/* Модальное окно уведомлений (пользователи и админка) */
.notify-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.notify-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.notify-modal {
    background: white;
    border-radius: 18px;
    padding: 40px 36px;
    max-width: 400px;
    width: calc(100% - 32px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.notify-modal-text {
    font-family: 'Cygre', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    margin: 0 0 28px;
}

.notify-modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.notify-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: 'Cygre', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.notify-btn:active {
    transform: scale(0.98);
}

.notify-btn-primary {
    background: #3a453c;
    color: white;
}

.notify-btn-primary:hover {
    background: #2f3a32;
}

.notify-btn-secondary {
    background: #f0f0f0;
    color: #333;
}

.notify-btn-secondary:hover {
    background: #e5e5e5;
}
