.cb-affbe0fc-wrapper {
    font-family: sans-serif;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.cb-affbe0fc-title {
    text-align: center;
    margin-bottom: 20px;
}

.cb-affbe0fc-steps {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.cb-affbe0fc-step {
    flex: 1;
    text-align: center;
    padding: 10px;
    color: #999;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.cb-affbe0fc-step-active {
    color: #0073e6;
    border-bottom-color: #0073e6;
}

.cb-affbe0fc-step-content {
    display: none;
}

.cb-affbe0fc-date-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.cb-affbe0fc-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
}

.cb-affbe0fc-btn-primary {
    background: #0073e6;
    color: #fff;
    border-color: #0073e6;
}

.cb-affbe0fc-btn-primary:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

.cb-affbe0fc-grid-container {
    overflow-x: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.cb-affbe0fc-courts-header, .cb-affbe0fc-grid-row {
    display: flex;
}

.cb-affbe0fc-courts-header {
    background: #f9f9f9;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

.cb-affbe0fc-time-col-header, .cb-affbe0fc-time-col {
    width: 100px;
    min-width: 100px;
    padding: 15px;
    border-right: 1px solid #ddd;
    background: #fafafa;
    position: sticky;
    left: 0;
}

.cb-affbe0fc-court-col, .cb-affbe0fc-slot {
    flex: 1;
    min-width: 120px;
    padding: 15px;
    text-align: center;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.cb-affbe0fc-slot {
    cursor: pointer;
    transition: background 0.2s;
    min-height: 50px;
}

/* Updated Colors as requested: */
.cb-affbe0fc-avail { background: #e0e0e0; } /* Gray for available */
.cb-affbe0fc-avail:hover { background: #d0d0d0; }
.cb-affbe0fc-sel { background: #ffcce6; } /* Pink for selected */
.cb-affbe0fc-booked { background: #4caf50; cursor: not-allowed; } /* Green for booked */
.cb-affbe0fc-maint { background: #f44336; cursor: not-allowed; } /* Red for maintenance */

.cb-affbe0fc-legend {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: center;
}

.cb-affbe0fc-legend-item { display: flex; align-items: center; gap: 5px; font-size: 14px; }
.cb-affbe0fc-box { width: 16px; height: 16px; border-radius: 3px; display: inline-block; }

.cb-affbe0fc-summary-panel {
    margin-top: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cb-affbe0fc-form-group {
    margin-bottom: 15px;
}
.cb-affbe0fc-form-group label {
    display: block;
    margin-bottom: 5px;
}
.cb-affbe0fc-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}