/* Fuel Prices Page Styles */
.fuel-prices-section {
    padding: 100px 0;
    background: var(--white);
}

.prices-table-wrapper {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.prices-table {
    width: 100%;
    border-collapse: collapse;
}

.prices-table thead {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFB300 100%);
    color: var(--dark-color);
}

.prices-table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
}

.prices-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: var(--transition);
}

.prices-table tbody tr:hover {
    background: var(--light-color);
}

.prices-table tbody tr:last-child {
    border-bottom: none;
}

.prices-table td {
    padding: 1.5rem;
}

.fuel-type-cell {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fuel-type-cell i {
    font-size: 1.5rem;
    color: var(--primary-red);
    width: 30px;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.last-update {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Fuel Calculator */
.fuel-calculator-section {
    padding: 100px 0;
    background: var(--light-color);
}

.calculator-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.calculator-form {
    margin-bottom: 2rem;
}

.calculator-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.calculator-form .form-group {
    display: flex;
    flex-direction: column;
}

.calculator-form label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.calculator-form input,
.calculator-form select {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.calculator-form input:focus,
.calculator-form select:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.1);
}

.calculator-results {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.calculator-results h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.result-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow);
}

.result-item i {
    font-size: 2rem;
    color: var(--primary-yellow);
}

.result-item .result-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.result-item .result-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
}

.note-section {
    padding: 50px 0 100px;
    background: var(--white);
}

.note-box {
    background: linear-gradient(135deg, rgba(255, 196, 0, 0.1) 0%, rgba(30, 142, 62, 0.1) 100%);
    border-left: 4px solid var(--primary-yellow);
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.note-box i {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-top: 0.3rem;
}

.note-box h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.note-box p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .calculator-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .prices-table {
        font-size: 0.9rem;
    }
    
    .prices-table th,
    .prices-table td {
        padding: 1rem 0.5rem;
    }
}

