/* Navbar */
.navbar-bet {
    width: 370px;
    display: flex;
    margin-top: 35px;
    justify-content: space-between;
    align-items: center;
    background-color: #fcfcfc; /* พื้นหลังสีเทาอ่อน */
    padding: 5px 10px;
    border-bottom: 2px solid #0056b3; /* เส้นแบ่งด้านล่าง */
    
}

/* ลิงก์ Navbar */
.nav-links {
    display: flex;
    gap: 12px;
}

.nav-links a {
    text-decoration: none;
    color: #0056b3;
    font-size: 16px;
    padding-bottom: 5px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0056b3; /* สีส้ม */
    transition: width 0.3s ease;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

/* ตัวเลือกเวลา */
.time-select {
    display: flex;
    align-items: center;
    gap: 10px;
}

.time-select label {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
}

.time-select select {
    padding: 8px 15px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 25px;
    background-color: #fff;
    color: #2b2b2b;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.time-select select:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}