/* 媒合池樣式 */
/* 顯示區標題與徽章 */
.ds-matching-pool h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}
.ds-badge-live { /* 即時媒合中樣式 */
    background-color: #00c48c;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 14px;
    margin-left: 10px;
}

/* 🔸 （全部需求 / 外送 / 倒垃圾）篩選 tab 選項 */
.ds-tab {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}
.ds-tab .tab {
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    background: #e0e0e0;
    cursor: pointer;
    font-size: 15px;
}
.ds-tab .tab.active {
    background: #ff7a59;
    color: white;
}

/* 卡片樣式 */
.order-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ds-request-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.ds-request-left h4 {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}
.ds-request-left p {
    font-size: 15px;
    margin: 0;
}

/* 標籤樣式 - 有外框*/
/*.ds-request-tags {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

.ds-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: bold;
    background-color: transparent;
    border: 1.5px solid currentColor;
    color: #333;
    text-align: center;
    transition: all 0.3s ease;
}
*/
/* 只有文字 */
.ds-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    color: #333;
    background: none;
    border: none;
    padding: 0;
}
.ds-tag.orange { color: #e65100; } /*似乎沒有用到*/
.ds-tag.blue   { color: #1a73e8; } /* 外送需求 */
.ds-tag.purple { color: #8e24aa; } /* 倒垃圾需求 */
.ds-tag.pink   { color: #c2185b; } /* 狀態 */
.ds-tag.yellow { color: #f39c12; } /*外送服務*/

/* 強制覆蓋舊設定（保險起見） */
.ds-tag.orange,
.ds-tag.blue,
.ds-tag.purple,
.ds-tag.pink,
.ds-tag.yellow {
    background-color: transparent !important;
    /*border: 1.5px solid currentColor !important;*/
}

/* 🟦 詳情 按鈕(外送/倒垃圾需求) */
.ds-request-action .button,
.ds-tags .button {
    background-color: #003366;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.ds-request-action .button:hover,
.ds-tags .button:hover {
    background-color: #002244;
    transform: translateY(-2px);
}
