/**
 * Master Layout Specific Styles
 */

/* ========================================
   Date and Time Display Styles
   ======================================== */
#datetime-display {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background: #f3f4f6;
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #374151;
    font-family: 'Inter', sans-serif;
    animation: slideInLeft 0.5s ease;
    border: 1px solid #e5e7eb;
}

.datetime-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.datetime-date, .datetime-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.datetime-time {
    font-size: 16px;
    font-weight: 600;
}

#datetime-display i {
    font-size: 14px;
    opacity: 0.9;
}

.datetime-zone {
    font-size: 10px;
    opacity: 0.8;
    margin-top: 4px;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ========================================
   Layout fixes for sticky footer
   ======================================== */
html {
    height: 100%;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.main-content-wrapper {
    flex: 1;
}

footer {
    margin-top: auto;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 768px) {
    #datetime-display {
        bottom: 10px;
        left: 10px;
        padding: 10px 14px;
    }
    
    .datetime-date, .datetime-time {
        font-size: 12px;
    }
    
    .datetime-time {
        font-size: 14px;
    }
}