/* /Pages/Member.razor.rz.scp.css */
.form-group[b-fpfz7r6d6g] {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .form-group label[b-fpfz7r6d6g] {
        margin-right: 10px;
        white-space: nowrap;
    }

    .form-group small-input[b-fpfz7r6d6g] {
        width: 30px; /* 適宜調整 */
    }

.point-link[b-fpfz7r6d6g] {
    text-decoration: underline;
    color: #007bff; /* ブルー系（リンクっぽい色） */
    cursor: pointer;
}

    .point-link:hover[b-fpfz7r6d6g] {
        text-decoration: none;
    }
/* /Pages/SendScore.razor.rz.scp.css */
.score-form[b-mgemugpfju] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
}

.score-container[b-mgemugpfju] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.player-names[b-mgemugpfju] {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-weight: bold;
    font-size: 18px;
    padding: 0 16px;
}

.score-inputs[b-mgemugpfju] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px; /* タップしやすい間隔に変更 */
}

.score-select[b-mgemugpfju] {
    width: 60px;
    height: 40px;
    font-size: 16px;
}

.separator[b-mgemugpfju] {
    font-size: 20px;
    font-weight: bold;
}

.url-input label[b-mgemugpfju] {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.url-input input[b-mgemugpfju] {
    width: 100%;
    height: 40px;
    font-size: 16px;
    padding: 8px;
}

.submit-button[b-mgemugpfju] {
    width: 100%; /* スマホで押しやすい幅に変更 */
    background-color: #007bff;
    color: white;
    font-size: 18px;
    padding: 12px;
    border: none;
    cursor: pointer;
    text-align: center;
}

    .submit-button:hover[b-mgemugpfju] {
        background-color: #0056b3;
    }

.mode-toggle[b-mgemugpfju] {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
}

.toggle-button[b-mgemugpfju] {
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    color: white;
    /*width: 100px;*/
    text-align: center;
}

    /* 初期状態（非アクティブ） */
    .toggle-button.register[b-mgemugpfju] {
        background-color: #c8e6c9;
    }
    /* 淡い緑 */
    .toggle-button.edit[b-mgemugpfju] {
        background-color: #bbdefb;
    }
    /* 淡い青 */
    .toggle-button.delete[b-mgemugpfju] {
        background-color: #ffcdd2;
    }
    /* 淡い赤 */

    /* アクティブ時の背景色 */
    .toggle-button.active.register[b-mgemugpfju] {
        background-color: #4caf50;
    }
    /* 濃い緑 */
    .toggle-button.active.edit[b-mgemugpfju] {
        background-color: #2196f3;
    }
    /* 濃い青 */
    .toggle-button.active.delete[b-mgemugpfju] {
        background-color: #f44336;
    }
    /* 濃い赤 */

    /* ホバー時（未選択の場合のみ少し濃く） */
    .toggle-button:not(.active):hover[b-mgemugpfju] {
        filter: brightness(90%);
    }
/* /Shared/DialogComponent.razor.rz.scp.css */
.modal-backdrop[b-i1j9tg9chh] {
    position: fixed;
    inset: 0; /* これで top, right, bottom, left を 0 に統一 */
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center; /* これで完全に中央配置される */
}

.modal[b-i1j9tg9chh] {
    background: white;
    width: auto;
    max-width: 90%;
    height: auto; /* 🔥 追加: 自然なサイズ調整 */
    max-height: 80vh; /* 画面の80%を超えない */
    min-height: 100px; /* 小さすぎるのを防ぐ */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    position: relative; /* absolute だとズレるので relative に変更 */
    margin: auto; /* これで中央に配置 */
    padding: 20px;
    animation: fadeIn-b-i1j9tg9chh 0.3s ease-in-out;
}

.modal-header[b-i1j9tg9chh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.modal-title[b-i1j9tg9chh] {
    margin: 0;
    font-size: 18px;
    color: black;
}

.close[b-i1j9tg9chh] {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.modal-body[b-i1j9tg9chh] {
    padding: 15px;
    font-size: 16px;
    text-align: center;
    color: black;
    flex-grow: 1;
    overflow-y: auto;
    min-height: 50px; /* 小さすぎないように設定 */
    max-height: 60vh; /* 画面の60%を超えたらスクロール */
}

.modal-footer[b-i1j9tg9chh] {
    padding-top: 10px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.btn[b-i1j9tg9chh] {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    flex-grow: 1;
    width: 50%;
    text-align: center;
}

.btn-primary[b-i1j9tg9chh] {
    background-color: #007bff;
    color: white;
    border: none;
}

.btn-danger[b-i1j9tg9chh] {
    background-color: #dc3545;
    color: white;
    border: none;
}

@keyframes fadeIn-b-i1j9tg9chh {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-5m4o07vwpt] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-5m4o07vwpt] {
    flex: 1;
}

.sidebar[b-5m4o07vwpt] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-5m4o07vwpt] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-5m4o07vwpt]  a, .top-row[b-5m4o07vwpt]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-5m4o07vwpt]  a:hover, .top-row[b-5m4o07vwpt]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-5m4o07vwpt]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-5m4o07vwpt] {
        display: none;
    }

    .top-row.auth[b-5m4o07vwpt] {
        justify-content: space-between;
    }

    .top-row[b-5m4o07vwpt]  a, .top-row[b-5m4o07vwpt]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-5m4o07vwpt] {
        flex-direction: row;
    }

    .sidebar[b-5m4o07vwpt] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-5m4o07vwpt] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-5m4o07vwpt]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-5m4o07vwpt], article[b-5m4o07vwpt] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-l6ob3ej17a] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-l6ob3ej17a] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-l6ob3ej17a] {
    font-size: 1.1rem;
}

.oi[b-l6ob3ej17a] {
    width: 1.5rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-l6ob3ej17a] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-l6ob3ej17a] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-l6ob3ej17a] {
        padding-bottom: 1rem;
    }

    .nav-item[b-l6ob3ej17a]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-l6ob3ej17a]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-l6ob3ej17a]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-l6ob3ej17a] {
        display: none;
    }

    .collapse[b-l6ob3ej17a] {
        /* Never collapse the sidebar for wide screens */
        display: block;
        width: 250px; /* �����Œ� */
    }
}
/* /Shared/ProgressBar.razor.rz.scp.css */
.modal-backdrop[b-ek6fejb1a5] {
    position: fixed;
    inset: 0; /* これで top, right, bottom, left を 0 に統一 */
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center; /* これで完全に中央配置される */
}

.modal[b-ek6fejb1a5] {
    background: white;
    width: auto;
    max-width: 90%;
    height: auto; /* 🔥 追加: 自然なサイズ調整 */
    max-height: 80vh; /* 画面の80%を超えない */
    min-height: 100px; /* 小さすぎるのを防ぐ */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    position: relative; /* absolute だとズレるので relative に変更 */
    margin: auto; /* これで中央に配置 */
    padding: 20px;
    animation: fadeIn-b-ek6fejb1a5 0.3s ease-in-out;
}

.modal-header[b-ek6fejb1a5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.modal-title[b-ek6fejb1a5] {
    margin: 0;
    font-size: 18px;
    color: black;
}

.close[b-ek6fejb1a5] {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.modal-body[b-ek6fejb1a5] {
    padding: 15px;
    font-size: 16px;
    text-align: center;
    color: black;
    flex-grow: 1;
    overflow-y: auto;
    min-height: 50px; /* 小さすぎないように設定 */
    max-height: 60vh; /* 画面の60%を超えたらスクロール */
}

.modal-footer[b-ek6fejb1a5] {
    padding-top: 10px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.btn[b-ek6fejb1a5] {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    flex-grow: 1;
    width: 50%;
    text-align: center;
}

.btn-primary[b-ek6fejb1a5] {
    background-color: #007bff;
    color: white;
    border: none;
}

.btn-danger[b-ek6fejb1a5] {
    background-color: #dc3545;
    color: white;
    border: none;
}

@keyframes fadeIn-b-ek6fejb1a5 {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
