/* Дополнительные стили для уведомления о непрочитанных сообщениях */
.notification-alert-modal {
    display: none;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.notification-alert-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #888;
    width: 320px;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.notification-alert-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    font-size: 50px;
}

.notification-alert-text {
    color: #424F6A;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 155%;
    margin-bottom: 20px;
    width: 100%;
}

.notification-alert-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.notification-alert-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 15px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notification-alert-btn-go {
    background-color: #2f394e;
    color: white;
    border: 2px solid #2f394e;
    flex: 1;
}

.notification-alert-btn-go:hover {
    background-color: #1f2838;
    border-color: #1f2838;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(47, 57, 78, 0.3);
}

.notification-alert-btn-close {
    background-color: transparent;
    color: #2f394e;
    border: 2px solid #2f394e;
    flex: 1;
}

.notification-alert-btn-close:hover {
    background-color: #2f394e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(47, 57, 78, 0.3);
}

@media (max-width: 480px) {
    .notification-alert-content {
        width: 90%;
        max-width: 320px;
        padding: 15px;
    }
    
    .notification-alert-text {
        font-size: 15px;
    }
    
    .notification-alert-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

.notification-message-box {
    border: 1px solid #444;
    background: #f4f4f4;
    padding: 12px;
    border-radius: 8px;
}
