.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999999;
    display: none;
    justify-content: center;
    align-items: center;
}

.notification-overlay.show {
    display: flex;
}

.notification-content {
    background: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.notification-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    background: rgb(222, 0, 0);
    border-radius: 8px 8px 0 0;
}

.header-title h3 {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
}

.notification-body {
    padding: 15px;
}

.highlight-info {
    background: #f5f5f5;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 12px;
}

.highlight-info p {
    margin: 4px 0;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

.highlight-info strong {
    color: #ff3956;
}

.important-notice {
    margin-top: 12px;
}

.important-notice p {
    margin: 6px 0;
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

.important-notice strong {
    color: #333;
}

.notice-text {
    color: #ff3956 !important;
    font-size: 12px !important;
}

.notification-footer {
    padding: 10px 15px;
    background: rgb(255, 234, 241);
    border-radius: 0 0 8px 8px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
