﻿/* --- 通用基礎設定 --- */
a {
    text-decoration: none !important;
    color: inherit;
}

/* --- 全域 Loading 遮罩 --- */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- 圖例與顏色方框基礎 --- */
.legend-container {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
}

.legend-item, .status-item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    margin-right: 15px;
    font-family: sans-serif;
}

.color-box {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    margin-right: 6px;
    border: 1px solid #999;
    flex-shrink: 0;
}

/* --- 狀態顏色定義 (加上 !important 確保權限) --- */
.normal {
    background-color: #FFE72D !important;
}

/*線上預訂*/
.online {
    background-color: #007d0a !important;
    color: #fff;
}

.male {
    background-color: #007bff !important;
}

.female {
    background-color: #dc3545 !important;
}

/*設施停用*/
.closed {
    background-color: #6c757d !important;
}

.bg-info {
    background-color: rgb(25, 127, 147) !important;
    color: #ffffff !important;
}

.bg-success {
    background-color: #8daf66 !important;
}

/* --- 性別文字顏色 --- */
.gender-none {
    color: #000 !important;
}

.gender-male {
    color: #007bff !important;
}

.gender-female {
    color: #dc3545 !important;
}
