.logo-container {
    text-align: center;
    margin-bottom: 1rem;
}

.company-logo {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
}

:root {
    --primary-color: #2c3e50;
    --accent-color: #f1c40f;
    --text-color: #34495e;
    --light-gray: #ecf0f1;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: #fff;
    position: relative;
}

.background-map {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1465447142348-e9952c393450') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.container {
    max-width: 800px;
    padding: 2rem;
}

.calculator-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-top: 2rem;
}

.calculator-header {
    text-align: center;
    margin-bottom: 2rem;
}

.calculator-header h1 {
    color: var(--primary-color);
    font-weight: 700;
}

.fare-display {
    background: #000;
    color: #f1c40f;
    font-family: 'Digital-7', monospace;
    font-size: 2.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: right;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
}

.fare-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1728555921674-73a815f71cdd') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.fare-display span {
    position: relative;
    z-index: 1;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid var(--light-gray);
    padding: 0.75rem;
    border-radius: 8px;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: none;
}

.breakdown-container {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.breakdown-item:last-child {
    border-bottom: none;
    font-weight: 700;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .calculator-container {
        padding: 1.5rem;
    }
    
    .fare-display {
        font-size: 2rem;
    }
}
.history-container {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 1rem;
}

.history-items {
    max-height: 300px;
    overflow-y: auto;
}

.history-item {
    background: white;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.history-item:last-child {
    margin-bottom: 0;
}

.history-item .timestamp {
    color: #666;
    font-size: 0.8rem;
}

.history-item .main-info {
    display: flex;
    justify-content: space-between;
    margin: 0.5rem 0;
}

.history-item .details {
    font-size: 0.9rem;
    color: #666;
}

/* Toggle Switch Styles */
.toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 8px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--accent-color);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}
