.notification-modal {
    width: 90%;
    max-width: 400px;
    min-height: 180px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-sizing: border-box;
    background-color: #2b2b50;
    z-index: 1400;
}

.notification-content {
    margin: 1rem 0 1.5rem 0;
    width: 100%;
}

#notification-message {
    font-size: 1.1rem;
    color: #FBF6E9;
    line-height: 1.5;
    word-wrap: break-word;
    font-weight: 500;
}

.notification-footer {
    display: flex;
    gap: 1rem;
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.notification-footer button {
    flex: 1;
    max-width: 140px;
    padding: 0.8rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    margin: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

#notification-confirm-btn {
    background-color: #3A86FF;
    color: #FFFFFF;
    border: none;
}

#notification-confirm-btn:hover {
    background-color: #256DFA;
}

#notification-cancel-btn {
    background-color: transparent;
    color: #8D86C9;
    border: 2px solid #8D86C9;
}

#notification-cancel-btn:hover {
    background-color: rgba(141, 134, 201, 0.1);
    border-color: #aaaaff;
    color: #FBF6E9;
}

.status-warning { color: #FFCC00 !important; }
.status-error   { color: #FF5F5F !important; }
.status-success { color: #44FF44 !important; }
.status-info    { color: #4CC9FE !important; }

@media (max-width: 600px) {
    .notification-modal {
        padding: 2rem 1.2rem;
    }

    #notification-message {
        font-size: 1rem;
    }

    .notification-footer {
        gap: 0.8rem;
    }

    .notification-footer button {
        padding: 0.7rem;
        font-size: 0.95rem;
    }
}