.price-list-container {
    max-width: 1500px;
    margin: 0rem auto;
    padding: 20px;
}
.main-heading {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.search-container {
    text-align: center;
}

.search-input {
    width: 100%;
    max-width: 500px;
    padding: 12px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    box-shadow: 0 0 10px rgba(62, 64, 149, 0.2);
}

.table-container {
    position: relative;
    overflow-x: auto;
    max-height: 70vh;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-top: 1.5rem;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    background: white;
}

.price-table th, .price-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.price-table th {
    position: sticky;
    top: 0;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    z-index: 1;
}

.price-table tr:hover {
    background-color: #f8f9fa;
}

.download-section {
    text-align: center;
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.modern-cta {
    padding: 12px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background-color: white;
}

.modern-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .table-container {
        max-height: 60vh;
        margin: 1rem -15px;
        border-radius: 0;
    }
    
    .search-input {
        max-width: 90%;
    }
    
    .price-table th, .price-table td {
        padding: 12px 10px;
    }
}

.filters-container {
display: flex;
gap: 1rem;
justify-content: center;
margin: 1rem 0;
flex-wrap: wrap;
}

.filter-select {
padding: 10px 20px;
border: 2px solid var(--primary-color);
border-radius: 25px;
font-size: 16px;
outline: none;
min-width: 200px;
background-color: white;
}

.filter-select:focus {
box-shadow: 0 0 10px rgba(62, 64, 149, 0.2);
}

@media (max-width: 768px) {
.filter-select {
    width: 100%;
    max-width: 90%;
}
}