
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
            margin: auto;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
}

/* Header styling */
.header {
            background: #2c3e50;
            color: white;
            padding: 5px;
            text-align: center;
            border-radius: 20px;
            margin-top: 0;
            margin-bottom: 30px;
        }

        .header h1 {
            font-size: 28px;
            margin-top: 0;
            margin-bottom: 0;
            color: white;
        }

        .header p {
            opacity: 0.8;
        }

/* Main content */
.metro-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.metro-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.metro-card h2 {
    margin-bottom: 10px;
    color: #004080;
}

.metro-card p {
    font-size: 0.95rem;
    color: #555;
}

/* Footer styling */
footer {
    background-color: #2c3e50;
    text-align: center;
    padding: 15px 20px;
    margin-top: 40px;
}
.footer-container{
     
            color: white;
            padding: 5px;
            text-align: center;
            border-radius: 20px;
            margin-top: 0;
            margin-bottom: 30px;
}


.inactive{
    background-color: #EBEBE4 ;
    cursor: default
}
.active:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
a{
    text-decoration: none;
}
a:visited {
      color: white; /* Same color as unvisited links */
      text-decoration: none; /* Optional: Remove underline */
    }