.image-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.time-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 20px 0;
    transition: opacity 0.5s ease;
}
.info-panel {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
}
.time-card {
    padding: 10px;
    min-width: 120px;
}
.time-value {
    font-size: 24px;
    font-weight: bold;
    color: #3498db;
}
.time-label {
    font-size: 14px;
    color: #666;
}