/* === Richieste (Quotations) === */
#requests-table {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

#requests-table thead {
    background: #202020;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

#requests-table th,
#requests-table td {
    vertical-align: middle !important;
    padding: 12px 14px;
    font-size: 13px;
}

#requests-table tbody tr:hover {
    background: #f9f9f9;
    transition: background .2s;
}

/* bottone View */
#requests-table .btn {
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: 500;
}

#requests-table .btn-primary {
    background-color: #fcb818;
    border-color: #fcb818;
    color: #202020;
}

#requests-table .btn-primary:hover {
    background-color: #e0a514;
    border-color: #e0a514;
    color: #fff;
}