/* ローディング画面全体（背景） */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 半透明の黒背景 */
    z-index: 9999; /* 最前面に表示 */
    display: none; /* 初期状態は非表示 */
}

/* ローディングコンテンツ（スピナー＋テキスト） */
.loading-content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%); /* 中央配置 */
    text-align: center;
}

/* ローディングスピナー（回転アニメーション） */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid #3498db; /* 青い部分 */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 35px;
}

/* Now Loading の文字（中央） */
.loading-text {
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
}

/* 回転アニメーション */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
