/* Idle Timeout Component Styles */

.idle-timeout-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-in-out;
}

.idle-timeout-dialog {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 450px;
    width: 90%;
    animation: slideIn 0.3s ease-out;
}

.idle-timeout-icon {
    margin-bottom: 1.5rem;
}

.idle-timeout-dialog h4 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.idle-timeout-dialog p {
    color: #666;
    line-height: 1.6;
}

.idle-timeout-dialog strong {
    color: #dc3545;
    font-size: 1.1em;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .idle-timeout-dialog {
        padding: 2rem 1.5rem;
    }

    .idle-timeout-dialog h4 {
        font-size: 1.25rem;
    }
}
