<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Base Styles and Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    color: #e7e7e7;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1000px;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Header Styles */
header {
    background: linear-gradient(90deg, #0f3460, #533483);
    padding: 25px 20px;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.logo-container i {
    font-size: 2.5rem;
    color: #e94560;
    margin-right: 15px;
}

header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Underline effect for header */
header h1::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: #e94560;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

header h1:hover {
    transform: scale(1.05);
}

header h1:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.tagline {
    color: #e7e7e7;
    font-size: 1rem;
    opacity: 0.8;
}

/* Main Content Styles */
main {
    padding: 30px;
    position: relative;
    min-height: 500px;
}

/* Section Styles */
section {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: #e94560;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #e94560;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Role Selection Styles */
.role-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.role-button {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #533483, #0f3460);
    border: none;
    border-radius: 15px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.role-button i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #e94560;
}

.role-button span {
    font-size: 1.2rem;
    font-weight: 500;
}

.role-button:hover {
    transform: translateY(-10px) scale(1.05);
    background: linear-gradient(135deg, #0f3460, #533483);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Form Styles */
.form-container {
    background: rgba(15, 52, 96, 0.5);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #e7e7e7;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #533483;
    border-radius: 8px;
    background-color: rgba(26, 26, 46, 0.7);
    color: #e7e7e7;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: #e94560;
    box-shadow: 0 0 0 2px rgba(233, 69, 96, 0.2);
}

.action-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #e94560, #533483);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.action-button:hover {
    background: linear-gradient(90deg, #533483, #e94560);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

/* Result Container Styles */
.result-container {
    background: rgba(15, 52, 96, 0.5);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    min-height: 60px;
    display: none;
}

.result-container.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

/* Map Container Styles */
.map-container {
    height: 300px;
    background: rgba(15, 52, 96, 0.5);
    border-radius: 15px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.map-placeholder i {
    font-size: 3rem;
    color: #e94560;
    margin-bottom: 10px;
    display: block;
}

/* Back Button Styles */
.back-button {
    background: transparent;
    border: 1px solid #e94560;
    color: #e94560;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    width: fit-content;
}

.back-button i {
    margin-right: 5px;
}

.back-button:hover {
    background-color: #e94560;
    color: white;
}

/* Footer Styles */
footer {
    background: linear-gradient(90deg, #0f3460, #533483);
    padding: 15px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .role-container {
        flex-direction: column;
        align-items: center;
    }
    
    .role-button {
        width: 100%;
        max-width: 250px;
    }
    
    .container {
        border-radius: 15px;
    }
    
    header h1 {
        font-size: 2.2rem;
    }
    
    .logo-container i {
        font-size: 2rem;
    }
}

/* Status Indicators */
.status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
}

.status.on-time {
    background-color: #28a745;
    color: white;
}

.status.delayed {
    background-color: #ffc107;
    color: #333;
}

.status.out-of-service {
    background-color: #dc3545;
    color: white;
}

/* Bus Card Styles */
.bus-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.bus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.bus-card h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: #e7e7e7;
}

.bus-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Navigation Bar Styles */
.main-nav {
    margin-top: 15px;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    color: #e7e7e7;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #e94560;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.main-nav a:hover {
    color: #e94560;
}

.main-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .main-nav ul {
        flex-wrap: wrap;
    }
    
    .main-nav li {
        margin: 5px 10px;
    }
}</pre></body></html>