.session-timeout-warning {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #ffeeba;
    color: #856404;
    border: 1px solid #ffeeba;
    border-radius: 4px;
    padding: 15px;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    animation: fadeIn 0.5s;
}

.warning-content {
    max-width: 300px;
}

.warning-content p {
    margin: 5px 0;
}

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

@media (max-width: 768px) {
    .session-timeout-warning {
        top: 10px;
        right: 10px;
        left: 10px;
        width: auto;
    }
} 