/* Titolo sezione */
.profile-area h2 {
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.profile-area h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #fcb818;
    /* giallo Zooy */
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Tabella fatture */
.table {
    background: #fff;
    border: 1px solid #ddd;
    font-size: 14px;
}

.table thead th {
    background: #202020;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.table tbody tr:hover {
    background: #f9f9f9;
}

/* Icona PDF */
.pdf-icon {
    font-size: 22px;
    color: #d9534f;
    /* rosso PDF */
}

.pdf-icon:hover {
    color: #b52b27;
}

.table td a {
    display: inline-block;
    text-decoration: none;
}