/* =================================================================
 * Page Specific Styles for Recorder (style.css)
 * ================================================================= */

/* --- ツール設定エリア --- */

/* 入力フォームの幅固定 */
.w-80px {
    width: 80px;
}

.w-70px {
    width: 70px;
}

/* 注釈用の極小テキスト */
.text-xs {
    font-size: 0.75rem;
}

/* --- ページアイコン --- */
.page-icon-primary {
    color: var(--bs-primary);
}

/* --- トースト通知コンテナ --- */
.toast-container-custom {
    z-index: 1100;
}

/* --- ローディングオーバーレイ --- */
/* JSでの制御用に初期状態は display: none を維持しつつ、Flex配置用のクラスを定義 */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    /* display: flex; JSで切り替え */
    align-items: center;
    justify-content: center;
}

.spinner-size-lg {
    width: 3rem;
    height: 3rem;
}

/* プレビューエリアの背景を黒に固定（波形を見やすくするため） */
.bg-black {
    background-color: #000 !important;
}

#initial-message {
    width: 100%;
    aspect-ratio: 16 / 9;
}