/* Page Transition Effects */
.page-transition-out {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-transition-in {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Session timeout modal styling */
#session-timeout-modal .modal-content {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#session-timeout-modal .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

#session-timeout-modal .modal-body {
    padding-top: 0;
    text-align: center;
}

#session-timeout-modal .countdown {
    font-size: 2.5rem;
    font-weight: bold;
    color: #dc3545;
    margin: 15px 0;
}

#session-timeout-modal .btn-extend {
    background-color: #28a745;
    color: white;
}

#session-timeout-modal .btn-logout {
    background-color: #6c757d;
    color: white;
}
