﻿.session-container {
    padding: 20px;
}

.date-section {
    margin-bottom: 10px;
    color: #fff;
    font-weight: bold;
}

/* 日期按鈕樣式 */
.date-button {
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 5px;
    background-color: #FF9900;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .date-button:hover {
        background-color: #e68a00;
    }

/* 隱藏的時間選項 */
.time-options {
    display: none;
    margin-left: 20px;
}

.time-option {
    margin-top: 5px;
    color: #e68a00;
    cursor: pointer;
}

/* 展開時顯示時間選項 */
.show .time-options {
    display: block;
}

label {
    color: #555;
    font-size: 1em;
}

input[type="radio"]:hover + label {
    color: #e68a00;
    cursor: pointer;
}

.label-type {
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 14px;
    margin-right: 10px;
    font-weight: bold;
}

/* Online label styles (Green) */
.online-label {
    border: 2px solid #4caf50; /* 綠色邊框 */
    color: #4caf50;
    background-color: #e8f5e9; /* 淺綠色背景 */
}

    .online-label:hover {
        background-color: #c8e6c9; /* 深綠色背景 */
    }

/* Offline label styles (Orange) */
.offline-label {
    border: 2px solid #ff5722; /* 橘色邊框 */
    color: #ff5722;
    background-color: #ffebee; /* 淺橘色背景 */
}

    .offline-label:hover {
        background-color: #ffcdd2; /* 深橘色背景 */
    }
