/* 汎用通知モーダル */
.app-notify-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-notify-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.app-notify-content {
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    min-width: 280px;
    max-width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.app-notify-title {
    margin: 0 0 12px;
    font-size: 18px;
    color: #dc2626;
    font-weight: bold;
}

.app-notify-message {
    margin: 0 0 20px;
    font-size: 14px;
    color: #333;
    white-space: pre-wrap;
    line-height: 1.5;
}

.app-notify-ok-btn {
    min-width: 120px;
    padding: 10px 24px;
    background: #004b82;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.app-notify-ok-btn:hover {
    background: #005b7f;
}
