/* Price Search */
.price-search {
    margin-bottom: 2rem;
    text-align: center;
}

.search-input {
    width: 100%;
    max-width: 400px;
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 119, 190, 0.1);
}

/* Price Table */
.price-table-container {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 120, 190, 0.1);
    margin-bottom: 3rem;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1.2rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.price-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}

.price-table tr:hover {
    background: #f8fdff;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.service-category {
    background: #e6f7ff;
    font-weight: bold;
    color: var(--primary-blue);
}

.service-category td {
    padding: 1.2rem 1rem;
    font-size: 1.1rem;
}

.price-amount {
    color: var(--primary-blue);
}

/* Price Info */
.price-info {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.price-info h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.price-info p {
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Search Highlight */
.highlight {
    background-color: #fff3cd;
    padding: 2px 4px;
    border-radius: 3px;
}

/* Responsive Price Table */
@media (max-width: 768px) {
    .price-table-container {
        overflow-x: auto;
    }
    
    .price-table {
        min-width: 600px;
    }
    
    .price-table th,
    .price-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
}