/* Booking Custom */
.time-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.time-button {
    padding: 12px 20px;
    border: none;
    background: #A97447; /* biru utama agar jelas */
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    min-width: 100px;
    font-weight: 500;
    transition: 0.2s ease;
}

.time-button:hover {
    background: #A97447;
    transform: scale(1.05);
}

.time-button[disabled] {
    background: #ddd;
    color: #777;
    cursor: not-allowed;
}

.btn-confirm {
    font-weight: bold;
    width: 100%;
    height: 60%;
    font-size: 100%;  
  
}


 
  