#ac-tr-booking-container {
    max-width: 900px;
    margin: 20px auto;
    font-family: sans-serif;
}

.ac-tr-date-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Calendar Grid */
.ac-tr-calendar-grid {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.ac-tr-calendar-grid th, 
.ac-tr-calendar-grid td {
    border: 1px solid #eee;
    padding: 12px;
    text-align: center;
}

.ac-tr-calendar-grid th {
    background: #f8f8f8;
    font-weight: bold;
}

.ac-tr-time-cell {
    background: #fcfcfc;
    font-weight: 600;
    width: 100px;
}

.ac-tr-book-btn {
    background: #e31e24;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s;
}

.ac-tr-book-btn:hover {
    background: #c1181d;
}

.ac-tr-status.booked {
    color: #999;
    font-style: italic;
    font-size: 13px;
}

.ac-tr-status.none {
    color: #ccc;
}

/* Modal */
#ac-tr-user-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.ac-tr-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.ac-tr-modal-btns {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.ac-tr-user-field-group {
    margin-bottom: 15px;
}

.ac-tr-user-field-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.ac-tr-user-field-group input, 
.ac-tr-user-field-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.ac-tr-checkbox-label {
    display: flex !important;
    align-items: flex-start;
    font-weight: normal !important;
    cursor: pointer;
}

.ac-tr-checkbox-label input {
    width: auto !important;
    margin-right: 10px !important;
    margin-top: 4px;
}
