/**
 * Cruise Availability Status
 */

.cruise-status {
    display: inline;
}

/* 受付開始前 - グレー */
.cruise-status--not-started {
    color: #6b7280;
}

/* 空きあり - グリーン */
.cruise-status--available {
    color: #166534;
}

/* 残りわずか - オレンジ */
.cruise-status--limited {
    color: #e97a0a;
}

/* キャンセル待ち - レッド */
.cruise-status--waitlist {
    color: #b91c1c;
}

/* 受付停止中 - パープル */
.cruise-status--suspended {
    color: #7c3aed;
}

/* 受付終了済 - グレー */
.cruise-status--closed {
    color: #6b7280;
}
