.notice-modal-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: transparent;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.notice-modal-box {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 30px 28px 24px;
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(15, 43, 107, 0.24);
    text-align: center;
    border-top: 5px solid #17a2b8;
    animation: noticeModalIn 0.28s ease-out;
}

@keyframes noticeModalIn {
    from {
        transform: scale(0.92);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.notice-modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #17a2b8, #3f5c9a);
    color: #fff;
    font-size: 30px;
}

.notice-modal-title {
    color: #1b2a7a;
    font-size: 20px;
    line-height: 1.25;
    margin: 0 0 8px;
    font-weight: 700;
}

.notice-modal-message {
    color: #1b2a7a;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 22px;
    font-weight: 500;
}

.notice-modal-message-confirm {
    margin-bottom: 28px;
}

.notice-modal-box .notice-modal-icon + .notice-modal-message {
    margin-bottom: 22px;
}

.notice-modal-btn {
    min-width: 120px;
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(to right, #17a2b8, #3f5c9a);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.notice-modal-btn:hover {
    opacity: 0.92;
}

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

.notice-modal-btn-cancel {
    background: #eef2fb;
    color: #3f5c9a;
    border: 1px solid #c5cee8;
}

.notice-modal-btn-confirm {
    background: linear-gradient(to right, #17a2b8, #3f5c9a);
}
