/* inactivity-alert.css */

.inactivity-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(34, 50, 34, 0.75);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inactivity-popup {
    background: #fff;
    border-radius: 1px;
    padding: 36px 32px 28px 32px;
    box-shadow: 0 8px 32px rgba(34, 50, 34, 0.16);
    text-align: center;
    min-width: 320px;
    font-family: 'Raleway', Arial, sans-serif;
}

.inactivity-text {
    color: #223222;
    font-size: 1.5rem;
    margin-bottom: 22px;
    font-family: 'Raleway', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.inactivity-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 14px;
}

.inactivity-btn {
    background: #223222;
    color: #fff;
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 1.1rem;
    border: none;
    border-radius: 1px;
    padding: 10px 24px;
    cursor: pointer;
    transition: background 0.2s;
}

.inactivity-btn:hover,
.inactivity-btn:focus {
    background: #3a4c3a;
}

.inactivity-timer {
    color: #223222;
    font-size: 1rem;
    margin-top: 12px;
    font-family: 'Raleway', Arial, sans-serif;
    font-weight: 500;
}
