﻿/* 整條 Bar 的樣式 */
.select-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    background: #1F2B37;
    border: 2px solid #77F2A1;
}

/* 文字部分 */
.select-label {
    font-weight: bold;
    color: white;
}

.select-box {
    background-color: #1F2B37;
    border: none;
    width: 100px;
    text-align: end;
    border-radius: 5px;
    padding: 5px;
    color: white;
}
