* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

buttonS {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.loading {
    text-align: center;
    padding: 2rem;
}

.hidden {
    display: none;
}

.result {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.result h2 {
    margin-bottom: 1rem;
    color: #333;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.result-item:last-child {
    border-bottom: none;
}


.container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    text-align: center;
}

/* Logo Section Styles */
.logo-section {
    margin-bottom: 20px;
    padding: 10px;
}

.logo {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ABS 1 Font for h1 */
h1 {
    font-family: 'Abhaya Libre', serif;
    font-weight: 700;
    font-size: 2.5em;
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.status-display {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 5px solid #007bff;
}

.line-1 h2 {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.line-2 .status-text {
    font-size: 1.3em;
    font-weight: bold;
    color: #333;
}

.status-text a {
    color: #007bff;
    text-decoration: none;
}

.status-text a:hover {
    text-decoration: underline;
}

/* New Info Section Styles */
.info-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px 20px;
    margin-bottom: 25px;
    border-left: 5px solid #28a745;
    text-align: center;
}

.info-line {
    margin-bottom: 12px;
    padding: 8px 0;
    font-size: 1em;
    color: #333;
    line-height: 1.4;
}

.info-line:last-child {
    margin-bottom: 0;
}

.info-line.line-1 {
    font-size: 1.2em;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 15px;
}

.highlight-text {
    background: linear-gradient(135deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
}

.info-line.line-2 {
    font-weight: 600;
    color: #495057;
    font-size: 1.1em;
}

.info-line.line-3 {
    color: #6c757d;
    font-size: 0.95em;
}

.info-line.line-3 a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-line.line-3 a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.info-line.line-4 {
    font-weight: 600;
    color: #343a40;
    background-color: #e9ecef;
    padding: 8px 15px;
    border-radius: 6px;
    display: inline-block;
    font-size: 0.95em;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 140px;
    text-align: center;
}

.btn.admin {
    background-color: #6f42c1;
    color: white;
}

.btn.admin:hover {
    background-color: #5e32b0;
}

.btn.fare-calculator {
    background-color: #17a2b8;
    color: white;
}

.btn.fare-calculator:hover {
    background-color: #138496;
}

/* Status color indicators */
.status-available { color: #28a745; }
.status-busy { color: #ffc107; }
.status-offline { color: #dc3545; }

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .info-section {
        padding: 20px 15px;
    }
    
    .info-line.line-1 {
        font-size: 1.1em;
    }
    
    .info-line.line-2 {
        font-size: 1em;
    }
    
    .info-line.line-3 {
        font-size: 0.9em;
    }
    
    .info-line.line-4 {
        font-size: 0.9em;
        padding: 6px 12px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
    }

}

@media (max-width: 360px) {
    h1 {
        font-size: 1.8em;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .info-line.line-3 {
        font-size: 0.85em;
    }
    
    .highlight-text {
        display: block;
        padding: 5px 0;
    }


}