.reh-price-history-container {
    max-height: 500px;
    overflow-y: auto;
}

.reh-price-history {
    width: 100%;
    border-collapse: collapse;
    font-family: "Segoe UI", Tahoma, sans-serif;
    font-size: 14px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.reh-price-history thead {
    background-color: #f4f6f8;
}

.reh-price-history th, 
.reh-price-history td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.reh-price-history th {
    font-weight: 600;
    color: #333;
}

.reh-price-history tbody tr:hover {
    background-color: #f9fafb;
}

.reh-price-history td {
    color: #555;
}

.reh-price-history td:nth-child(3),
.reh-price-history td:nth-child(5) {
    font-weight: bold;
    color: #1a73e8;
}

@media (max-width: 600px) {
    .reh-price-history thead {
        display: none;
    }
    .reh-price-history tr {
        display: block;
        margin-bottom: 10px;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        padding: 10px;
    }
    .reh-price-history td {
        display: flex;
        justify-content: space-between;
        padding: 6px 0;
    }
    .reh-price-history td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #333;
    }
}