.mntrc-notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mntrc-notification-overlay.is-visible {
    opacity: 1;
}

.mntrc-notification-card {
    background-color: #ffffff;
    width: 90%;
    max-width: 440px;
    padding: 28px 20px;
    border-radius: 28px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    text-align: center;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.mntrc-notification-overlay.is-visible .mntrc-notification-card {
    transform: translateY(0) scale(1);
}

.mntrc-notification-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.type-success .mntrc-notification-icon-wrapper {
    background-color: #ecfdf5;
    color: #10b981;
}

.type-error .mntrc-notification-icon-wrapper {
    background-color: #fef2f2;
    color: #ef4444;
}

.type-warning .mntrc-notification-icon-wrapper {
    background-color: #fffbeb;
    color: #f59e0b;
}

.type-info .mntrc-notification-icon-wrapper {
    background-color: #eff6ff;
    color: #3b82f6;
}

.mntrc-notification-title {
    color: #0f172a;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.mntrc-notification-message {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.mntrc-notification-btn {
    width: 100%;
    padding: 6px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #FFD600;
    color: #0f172a;
    box-shadow: 0 4px 6px -1px rgba(255, 214, 0, 0.2);
}

.mntrc-notification-btn:hover {
    background-color: #e6c100;
    transform: translateY(-1px);
}

.mntrc-notification-btn:active {
    transform: translateY(0);
}

.mntrc-notification-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #94a3b8;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    transition: color 0.2s ease;
}

.mntrc-notification-close:hover {
    color: #475569;
}