.user-sales-table-title {
    font-size: 20px;
    margin:1rem 0;
    text-transform: uppercase;
    font-weight: 300;
}

.user-sales-table {
    width: 100%;
    border-collapse: collapse;
    font-weight: 300;
    font-size: 14px;
}

.user-sales-table th,
.user-sales-table td {
    border: 1px solid #000;
    padding: 10px 12px;
    text-align: left;
}

.user-sales-table thead td {
    font-weight: 300;
    text-transform: uppercase; 
    background: #f2f2f2; 
    letter-spacing: 0.5px;
}

.user-sales-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.user-sales-table tbody tr:hover {
    background: #f0f0f0;
}

.user-sales-table a {
    text-decoration: underline;
}

.user-sales-table td.bolder {
    font-weight: 400;
}

.user-sales-table-message {
    position: relative;
    cursor: pointer;
}

.user-sales-table-message .message {
    position: absolute;
    background-color: white;
    z-index: 1;
    padding: 1rem;
    min-width: 200px;
    max-width: 400px;
    width: max-content;
    left:0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transform: translateX(-101%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    top:0;
}

.user-sales-table-message:hover .message {
    opacity: 1;
    pointer-events: auto;
}

.user-sales-summary {
    width: 300px;
    border-collapse: collapse;
    font-weight: 300;
    font-size: 14px;
    margin-top: 15px;
}

.user-sales-summary td {
    border: 1px solid #000;
    padding: 8px 10px;
}

.user-sales-summary {
    width: 300px;
    border-collapse: collapse;
    font-weight: 300;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.user-sales-summary td {
    border: 1px solid #000;
    padding: 8px 10px;
}

.user-sales-summary td:first-child {
    font-weight: 500;
    text-transform: uppercase;
    background: #fafafa;
}

.user-sales-summary tr:nth-child(even) {
    background: #fafafa;
}

#settlement_req {
    background-color: black;
    color:white;
    padding:0.5rem 1rem;
    border:1px solid black;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 300;
    display: block;
    margin: 1rem 0;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

#settlement_req:hover {
    color: black;
    background-color: white;
}