/* ===== 設置店舗・入荷情報テーブル ===== */
.gacha-arrival-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.gacha-arrival-table thead tr {
    background: #ff6b6b;
    color: #fff;
}

.gacha-arrival-table th {
    padding: 0.3rem 0.5rem;
    font-weight: normal;
    text-align: left;
    white-space: nowrap;
}

.gacha-arrival-table td {
    padding: 0.3rem 0.5rem;
    border-bottom: 1px solid #ebebeb;
    vertical-align: middle;
}

/* カラム幅（固定 + 店舗列が残りを占有） */
.gacha-arrival-table .col-date   { width: 5.5rem; white-space: nowrap; }
.gacha-arrival-table .col-status { width: 2.5rem; text-align: center; }
.gacha-arrival-table .col-area   { width: 5rem;   white-space: nowrap; }
.gacha-arrival-table .col-shop   { width: auto; }

/* ○ アイコン（在庫あり） */
.gacha-stock-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    vertical-align: middle;
}

.gacha-stock-icon--ok {
    border: 2.5px solid #4caf50;
}

/* × アイコン（在庫なし） */
.gacha-stock-icon--ng {
    position: relative;
    background: transparent;
}

.gacha-stock-icon--ng::before,
.gacha-stock-icon--ng::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2.5px;
    background: #e53935;
    border-radius: 2px;
}

.gacha-stock-icon--ng::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.gacha-stock-icon--ng::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* 不明テキスト */
.gacha-stock-unknown {
    font-size: 11px;
    color: #999;
}

/* 注記 */
.gacha-arrival-note {
    font-size: 11px;
    color: #aaa;
    margin-top: 0.75rem;
}
