.price-history-page .bg-main .container {
    padding-top: 48px;
    padding-bottom: 80px;
}

.page-header {
    background-color: var(--vp-gray-dark);
    color: #FFFFFF;
    padding: 100px 0 60px;
    text-align: center;
}
.page-header h1 {
    color: #FFFFFF;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}
.history-table-container {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--vp-border-light);
    overflow-x: auto;
    margin-top: 40px;
}
.history-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-family: 'Inter', sans-serif;
}
.history-table th, .history-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--vp-border-light);
}
.history-table th {
    background-color: var(--vp-bg-alt);
    color: var(--vp-gray-secondary);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}
.history-table tbody tr {
    transition: var(--transition-fast);
}
.history-table tbody tr:hover {
    background-color: var(--vp-bg-alt);
}
.history-table tbody tr:last-child td {
    border-bottom: none;
}
