
    body {
        font-family: Arial, sans-serif;
        text-align: center;
        font-size: 18px;
        height: 100%;
        margin: 0;
        padding: 0;
        background-color: #121212; 
        color: #f4f4f4; 
    }
    
    .container {
        background: #1e1e1e; 
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0px 0px 5px rgba(255,255,255,0.1);
        display: inline-block;
        width: 350px;
        height: 250px;
        margin:20px auto;
        cursor: pointer;
        transition: background 0.3s ease;
    }
    
    .container:hover {
    background: #313131;  
}
    
    a.container-link {
    display: block;  
    text-decoration: none;  
    color: inherit;  
   

}
    
    
    h2 {
        color: #e0e0e0; 
    }
    
    h2 a {
        color: #e0e0e0; 
        text-decoration: none;
    }
    
    .time {
        font-size: 24px;
        font-weight: bold;
        color: #76c7c0; 
    }
    .details {
        font-size: 18px;
        margin-top: 10px;
    }
    .wrapper {
        display: flex;
        justify-content: center;
        gap: 60px;
        flex-wrap: wrap;
  /*      width: 60%; */
        margin: 0 auto; 
        
    }

    p {
        margin: 0.5em;
    }

    footer {
        margin-top: 20px;
        text-align: center;
        font-size: 14px;
        color: #888; 
    }
    footer a {
        color: #76c7c0; 
        text-decoration: none;
    }
    footer a:hover {
        text-decoration: underline;
    }
    
    .button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 30px;
    background-color: #76c7c0;
    color: #121212;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}
.button:hover {
    background-color: #5aa39b;
}

/* Temperature Colour Classes */

/* Cold temperature (<6°C) - Blue */
.cold {
    color: #3498db;
}

/* Cool temperature (6-10°C) - Teal */
.mild {
    color: #1abc9c;
}

/* Warm temperature (11-15°C) - Orange */
.warm {
    color: #f39c12;
}

/* Hot temperature (>20°C) - Red */
.hot {
    color: #e74c3c;
}

/* Action Colour Classes */

.arrive {
    color: red;
    font-weight: bold;
}

.depart {
    color: green;
    font-weight: bold;
}


.wrapperflt {
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
    padding-top: 60px
}

.contentflt {
    flex: 1; 
    
}

.footerflt {
    background: #333; 
    color: white;
    text-align: center;
    padding: 10px;
}

.headerft {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px; 
    background: #333;
    color: white;
    text-align: center;
    line-height: 60px; 
    font-size: 20px;
    z-index: 1000; 
}

.headerft h1 {
    margin: 0;
    font-size: 28px;
    text-align: center;
    line-height: 40px; 
}

    
