/* /Pages/UI/UI_Footer.razor.rz.scp.css */
/* UI_Footer.razor.css */
footer[b-f9f2hekehd] {
    background-color: #333;
    color: #fff;
    padding: 60px 20px 30px 20px;
    text-align: center;
    font-size: 14px;
}

.footer-links[b-f9f2hekehd] {
    display: flex;
    flex-wrap: wrap; /* スマホなどで画面が狭いときは自動で折り返す */
    justify-content: center;
    gap: 24px;
    margin-bottom: 30px;
}

    .footer-links a[b-f9f2hekehd], .footer-links .nav-link[b-f9f2hekehd] {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s;
    }

        .footer-links a:hover[b-f9f2hekehd], .footer-links .nav-link:hover[b-f9f2hekehd] {
            color: #fff;
            text-decoration: underline;
        }

.copy[b-f9f2hekehd] {
    color: #888;
    font-size: 12px;
}
/* /Pages/UI/UI_Header.razor.rz.scp.css */
/* UI_Header.razor.css */
header[b-0pzh11v39s] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-sizing: border-box;
}

.logo-link[b-0pzh11v39s] {
    font-size: 26px;
    font-weight: 800;
    color: #e63946;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.header-nav ul[b-0pzh11v39s] {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link-sub[b-0pzh11v39s] {
    color: #555;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

    .nav-link-sub:hover[b-0pzh11v39s] {
        color: #e63946;
    }

/* ＝＝＝SNSテキストタグのスタイル＝＝＝ */
.social-icons-container[b-0pzh11v39s] {
    display: flex;
    align-items: center;
    /* 区切り線と余白を右側に変更 */
    margin-right: 10px;
    padding-right: 20px;
    border-right: 1px solid #ddd;
}

.social-icons[b-0pzh11v39s] {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-link[b-0pzh11v39s] {
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    color: #666;
    background-color: #f4f4f4;
    padding: 4px 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

a.social-link:hover[b-0pzh11v39s] {
    background-color: #333;
    color: #fff;
    transform: translateY(-2px);
}

/* 未設定（グレーアウト）状態のスタイル */
.social-link.disabled[b-0pzh11v39s] {
    color: #aaa;
    background-color: #fafafa;
    cursor: not-allowed;
    pointer-events: none;
}

.loading-text[b-0pzh11v39s] {
    font-size: 12px;
    color: #999;
}
/* /Pages/UI/UI_Home.razor.rz.scp.css */
/* UI_Home.razor.css */

/* --- ベーススタイル --- */
body[b-pcxhdur91n] {
    font-family: "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

a[b-pcxhdur91n], .nav-link[b-pcxhdur91n] {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul[b-pcxhdur91n] {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* --- ヒーローエリア --- */
.hero[b-pcxhdur91n] {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 60px auto 0 auto;
    padding: 40px 20px;
    min-height: 500px;
}

.hero-content[b-pcxhdur91n] {
    flex: 1;
    padding-right: 40px;
}

    .hero-content h1[b-pcxhdur91n] {
        font-size: 40px;
        margin-bottom: 40px;
        color: #333;
    }

.hero-image-container[b-pcxhdur91n] {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image[b-pcxhdur91n] {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* =========================================
   ボタンデザイン
   ========================================= */
.btn-google-login[b-pcxhdur91n], .btn-main-action[b-pcxhdur91n] {
    background-color: #e63946;
    color: #fff !important;
    padding: 15px 40px;
    font-size: 20px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

    .btn-google-login:hover[b-pcxhdur91n], .btn-main-action:hover[b-pcxhdur91n] {
        background-color: #d62828;
        transform: translateY(-2px);
        color: #fff;
    }

.btn-disabled[b-pcxhdur91n] {
    background-color: #e0e0e0 !important;
    color: #888888 !important;
    padding: 15px 40px;
    font-size: 20px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    box-shadow: none !important;
    cursor: not-allowed !important;
    pointer-events: none;
    text-decoration: none;
}

.btn-wide[b-pcxhdur91n] {
    width: 100%;
    max-width: 350px;
}

.action-area[b-pcxhdur91n] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    min-height: 80px;
}

.loading-spinner[b-pcxhdur91n] {
    border: 4px solid rgba(230, 57, 70, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border-left-color: #e63946;
    animation: spin-b-pcxhdur91n 1s linear infinite;
}

@keyframes spin-b-pcxhdur91n {
    to {
        transform: rotate(360deg);
    }
}

/* =========================================
   お知らせエリア（新設）
   ========================================= */
.notice-section[b-pcxhdur91n] {
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 0 20px;
}

.notice-container[b-pcxhdur91n] {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-left: 4px solid #e63946;
    padding: 15px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
}

.notice-label[b-pcxhdur91n] {
    background-color: #fce5cd;
    color: #d6624b;
    font-size: 14px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
    margin-right: 20px;
    white-space: nowrap;
}

.notice-content[b-pcxhdur91n] {
    flex: 1;
    font-size: 15px;
    color: #555;
}

.notice-empty[b-pcxhdur91n] {
    margin: 0;
    color: #999;
}

/* =========================================
   ツールの特徴（機能紹介）エリア
   ========================================= */
.features[b-pcxhdur91n] {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

    .features h2[b-pcxhdur91n] {
        font-size: 32px;
        color: #333;
        margin-bottom: 50px;
        position: relative;
        display: inline-block;
    }

        .features h2[b-pcxhdur91n]::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background-color: #e63946;
            border-radius: 2px;
        }

.feature-grid[b-pcxhdur91n] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card[b-pcxhdur91n] {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f9f9f9;
    transition: transform 0.3s ease;
}

    .feature-card:hover[b-pcxhdur91n] {
        transform: translateY(-5px);
    }

    .feature-card h3[b-pcxhdur91n] {
        font-size: 22px;
        color: #d6624b;
        margin-bottom: 20px;
    }

    .feature-card p[b-pcxhdur91n] {
        font-size: 16px;
        color: #555;
        line-height: 1.8;
        text-align: left;
    }

/* =========================================
   CTA（Call To Action）エリア
   ========================================= */
.cta-section[b-pcxhdur91n] {
    background-color: #fff9f2;
    padding: 80px 20px;
    text-align: center;
    margin-top: 60px;
}

    .cta-section h2[b-pcxhdur91n] {
        font-size: 32px;
        color: #333;
        margin-bottom: 15px;
    }

    .cta-section p[b-pcxhdur91n] {
        font-size: 18px;
        color: #666;
        margin-bottom: 40px;
    }

.cta-action-area[b-pcxhdur91n] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
}

/* =========================================
   レスポンシブ対応
   ========================================= */
@media (max-width: 1024px) {
    .hero[b-pcxhdur91n] {
        height: auto;
        padding: 0 20px;
    }

        .hero h1[b-pcxhdur91n] {
            font-size: 36px;
        }
}

@media (max-width: 768px) {
    .hero[b-pcxhdur91n] {
        flex-direction: column-reverse;
        text-align: center;
        margin-top: 30px;
        padding-bottom: 40px;
    }

    .hero-content[b-pcxhdur91n] {
        padding-right: 0;
        margin-top: 30px;
    }

    .hero h1[b-pcxhdur91n] {
        font-size: 28px;
    }

    .action-area[b-pcxhdur91n] {
        align-items: center;
    }

    .notice-container[b-pcxhdur91n] {
        flex-direction: column;
        align-items: flex-start;
    }

    .notice-label[b-pcxhdur91n] {
        margin-bottom: 10px;
    }

    .btn-google-login[b-pcxhdur91n], .btn-main-action[b-pcxhdur91n], .btn-disabled[b-pcxhdur91n] {
        padding: 12px 30px;
        font-size: 18px;
    }

    .btn-wide[b-pcxhdur91n] {
        max-width: 100%;
    }

    .cta-section[b-pcxhdur91n] {
        padding: 60px 20px;
    }
}
/* /Pages/UI/UI_PostBody.razor.rz.scp.css */
/* UI_PostBody.razor.css */

.textarea-body[b-jq3ctsorg2] {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    outline: none;
    font-family: inherit;
}

.mode-description[b-jq3ctsorg2] {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
}

/* --- 新仕様：活動メモUI用のスタイル --- */
.memo-header-text[b-jq3ctsorg2] {
    font-size: 16px;
    font-weight: bold;
    color: #d6624b;
    background-color: #fff9f2;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #fce5cd;
    margin-bottom: 30px;
    text-align: center;
}

.main-input-group[b-jq3ctsorg2] {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px dashed #eee;
}

.sub-input-group[b-jq3ctsorg2] {
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 3px solid #f0f0f0;
}

.required-label[b-jq3ctsorg2]::after {
    content: "必須";
    background-color: #e63946;
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 10px;
    font-weight: normal;
    vertical-align: middle;
}

.badge-optional[b-jq3ctsorg2] {
    background-color: #e9ecef;
    color: #6c757d;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 10px;
    font-weight: normal;
    vertical-align: middle;
}

.input-description[b-jq3ctsorg2] {
    font-size: 14px;
    font-weight: bold;
    color: #444;
    margin: 5px 0 10px 0;
}

/* 固定表示する例文のスタイル */
.example-box[b-jq3ctsorg2] {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 12px 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #555;
    border: 1px solid #e9ecef;
}

    .example-box span.ex-label[b-jq3ctsorg2] {
        font-weight: bold;
        color: #888;
        display: block;
        margin-bottom: 6px;
    }

    .example-box ul[b-jq3ctsorg2] {
        margin: 0;
        padding-left: 20px;
        list-style-type: disc;
    }

    .example-box li[b-jq3ctsorg2] {
        margin-bottom: 6px;
    }

        .example-box li:last-child[b-jq3ctsorg2] {
            margin-bottom: 0;
        }

.example-text-inline[b-jq3ctsorg2] {
    font-size: 13px;
    color: #666;
    background-color: #f8f9fa;
    padding: 8px 12px;
    border-radius: 4px;
    margin-bottom: 10px;
    border: 1px solid #e9ecef;
}

/* 入力欄のサイズで「均等に並べない」を表現 */
.large-textarea[b-jq3ctsorg2] {
    min-height: 200px;
    border: 2px solid #ccc; /* 主入力のみ枠線を少し強調 */
}

    .large-textarea:focus[b-jq3ctsorg2] {
        border-color: #e63946;
    }

.medium-textarea[b-jq3ctsorg2] {
    min-height: 120px;
}

.small-textarea[b-jq3ctsorg2] {
    min-height: 80px;
}

.input-title[b-jq3ctsorg2] {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
}

/* ボタン周り */
.btn-hint[b-jq3ctsorg2] {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    font-weight: bold;
}

.btn-generate[b-jq3ctsorg2] {
    display: block;
    width: 100%;
    padding: 18px;
    background-color: #e63946; /* Musubiレッド */
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

    .btn-generate:hover[b-jq3ctsorg2] {
        background-color: #d62828;
        transform: translateY(-2px);
    }

    .btn-generate:disabled[b-jq3ctsorg2] {
        background-color: #ccc;
        box-shadow: none;
        cursor: not-allowed;
        transform: none;
    }

/* --- 汎用スタイル --- */
.btn-format[b-jq3ctsorg2] {
    padding: 10px 20px;
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 15px;
    margin-bottom: 15px;
}

    .btn-format:hover[b-jq3ctsorg2] {
        background-color: #5a6268;
    }

    .btn-format:disabled[b-jq3ctsorg2] {
        background-color: #ccc;
        cursor: not-allowed;
    }

.alert-error[b-jq3ctsorg2] {
    color: #dc3545;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
    padding: 10px;
    background-color: #f8d7da;
    border-radius: 4px;
}
/* /Pages/UI/UI_PostImage.razor.rz.scp.css */
/* UI_PostImage.razor.css */

.image-slot-list[b-3hwkmsee3i] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.image-slot[b-3hwkmsee3i] {
    width: 100%;
    border-radius: 6px;
    position: relative;
    background-color: #f8fbff;
    border: 2px solid #b8daff;
    transition: 0.2s;
}

    .image-slot.is-empty[b-3hwkmsee3i] {
        height: 120px;
        border: 2px dashed #007bff;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #007bff;
        cursor: pointer;
    }

        .image-slot.is-empty:hover[b-3hwkmsee3i] {
            background-color: #e6f2ff;
            border-color: #0056b3;
        }

    .image-slot.is-filled[b-3hwkmsee3i] {
        padding: 10px;
        display: flex;
        align-items: center;
        gap: 20px;
        border: 1px solid #007bff;
        background-color: #fff;
    }

.preview-img[b-3hwkmsee3i] {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.file-info[b-3hwkmsee3i] {
    flex-grow: 1;
    font-size: 14px;
    color: #555;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.action-buttons[b-3hwkmsee3i] {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.action-btn[b-3hwkmsee3i] {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-change[b-3hwkmsee3i] {
    background-color: #007bff;
    color: white;
}

    .btn-change:hover[b-3hwkmsee3i] {
        background-color: #0056b3;
    }

.btn-delete[b-3hwkmsee3i] {
    background-color: #dc3545;
    color: white;
}

    .btn-delete:hover[b-3hwkmsee3i] {
        background-color: #a71d2a;
    }

.file-input-trigger[b-3hwkmsee3i] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 5;
}
/* /Pages/UI/UI_PostMovie.razor.rz.scp.css */
/* UI_PostMovie.razor.css */

.movie-slot[b-7ytb0tb106] {
    width: 100%;
    border-radius: 6px;
    background-color: #fffafb;
    border: 2px solid #ffeeba;
    transition: 0.2s;
    margin-bottom: 10px;
}

    .movie-slot.is-empty[b-7ytb0tb106] {
        height: 120px;
        border: 2px dashed #dc3545;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #dc3545;
        cursor: pointer;
        position: relative;
    }

        .movie-slot.is-empty:hover[b-7ytb0tb106] {
            background-color: #f8d7da;
        }

    .movie-slot.is-filled[b-7ytb0tb106] {
        padding: 15px;
        display: flex;
        align-items: center;
        gap: 20px;
        border: 1px solid #dc3545;
    }

.file-input-trigger[b-7ytb0tb106] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.btn-movie-action[b-7ytb0tb106] {
    background-color: #dc3545;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}
/* /Pages/UI/UI_PostPage.razor.rz.scp.css */
/* UI_PostPage.razor.css */

*[b-nd3jopnbi6] {
    box-sizing: border-box;
}

/* --- コンテナ --- */
.editor-container[b-nd3jopnbi6] {
    max-width: 800px;
    margin: 100px auto 60px;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.editor-title[b-nd3jopnbi6] {
    margin-bottom: 30px;
    text-align: center;
    font-size: 24px;
    color: #444;
}

.form-group[b-nd3jopnbi6] {
    margin-bottom: 25px;
}

.form-label[b-nd3jopnbi6] {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 14px;
    color: #555;
}

.input-title[b-nd3jopnbi6] {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
}

    .input-title:focus[b-nd3jopnbi6] {
        border-color: #aaa;
    }

/* --- モード説明テキスト --- */
.mode-description[b-nd3jopnbi6] {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
}

/* --- タブ切り替えUI --- */
.mode-tabs[b-nd3jopnbi6] {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 2px solid #ddd;
}

.mode-tab[b-nd3jopnbi6] {
    flex: 1;
    padding: 12px 15px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: bold;
    color: #777;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    position: relative;
    outline: none;
}

    .mode-tab:hover[b-nd3jopnbi6] {
        background-color: #f9f9f9;
        color: #444;
    }

    .mode-tab.active[b-nd3jopnbi6] {
        color: #007bff;
    }

        .mode-tab.active[b-nd3jopnbi6]::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #007bff;
        }

/* --- タイトルプレビュー --- */
.preview-title-box[b-nd3jopnbi6] {
    background-color: #eef7ff;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #bce8f1;
    margin-bottom: 25px;
}

.preview-title-text[b-nd3jopnbi6] {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.btn-apply[b-nd3jopnbi6] {
    padding: 8px 16px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s;
}

    .btn-apply:hover[b-nd3jopnbi6] {
        background-color: #218838;
    }

/* --- 各種ボタン --- */
.btn-submit[b-nd3jopnbi6] {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #333;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
}

    .btn-submit:hover[b-nd3jopnbi6] {
        background-color: #555;
    }

    .btn-submit:disabled[b-nd3jopnbi6] {
        background-color: #ccc;
        cursor: not-allowed;
    }

.btn-action[b-nd3jopnbi6], .btn-format[b-nd3jopnbi6] {
    padding: 10px 20px;
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 15px;
}

    .btn-action:hover[b-nd3jopnbi6], .btn-format:hover[b-nd3jopnbi6] {
        background-color: #5a6268;
    }

    .btn-action:disabled[b-nd3jopnbi6], .btn-format:disabled[b-nd3jopnbi6] {
        background-color: #ccc;
        cursor: not-allowed;
    }

.btn-generate[b-nd3jopnbi6] {
    background-color: #007bff;
    margin-top: 0;
}

    .btn-generate:hover[b-nd3jopnbi6] {
        background-color: #0056b3;
    }

.alert-error[b-nd3jopnbi6] {
    color: #dc3545;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
    padding: 10px;
    background-color: #f8d7da;
    border-radius: 4px;
}

.icon-plus[b-nd3jopnbi6] {
    font-size: 24px;
    margin-right: 8px;
}

/* --- ポップアップUI --- */
.popup-overlay[b-nd3jopnbi6] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup-content[b-nd3jopnbi6] {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.popup-title[b-nd3jopnbi6] {
    font-size: 22px;
    color: #28a745;
    margin-bottom: 15px;
}

.popup-buttons[b-nd3jopnbi6] {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
}

.btn-complete[b-nd3jopnbi6] {
    padding: 10px 25px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

    .btn-complete:hover[b-nd3jopnbi6] {
        background-color: #0056b3;
    }

.btn-undo[b-nd3jopnbi6] {
    padding: 10px 25px;
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

    .btn-undo:hover[b-nd3jopnbi6] {
        background-color: #5a6268;
    }

    .btn-undo:disabled[b-nd3jopnbi6] {
        background-color: #ccc;
        cursor: not-allowed;
    }
