/* ===== INKSPACE PREMIUM BOOKING UI ===== */

/* Headings */
#events h3 {
    font-weight: 600;
    font-size: 18px;
    color: #111;
    letter-spacing: 0.5px;
}

/* Description text */
#events p.description,
#events div.description {
    color: #777;
    font-size: 14px;
    line-height: 1.5;
}

/* Duration text */
#events p.duration,
#events div.duration {
    color: #999;
    font-size: 12px;
}

/* Selected event */
#events .selectedEvent {
    border: 1px solid #000;
    background: #f9f9f9;
}

/* Primary button */
#events input.reserve_time_btn {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 18px;
    font-weight: 500;
    transition: 0.3s ease;
}

#events input.reserve_time_btn:hover {
    background: #222;
}

/* Secondary button */
#events input.select_another_btn {
    background: #eee;
    color: #111;
    border-radius: 10px;
    padding: 10px 16px;
}

/* Form headings */
#eventForm #start_date-block-container h3,
#eventForm #timeline-container h3 {
    font-size: 16px;
    color: #111;
}

/* Save button */
#eventForm #save_button {
    background: #000;
    color: #fff;
    border-radius: 10px;
    padding: 12px;
    border: none;
}

/* Calendar container */
div.ui-widget-content {
    border-radius: 12px;
    border: 1px solid #eee;
}

/* Calendar header */
div.ui-widget-header {
    background: #000;
    color: #fff;
    border-radius: 10px 10px 0 0;
}

/* Timeline table */
#timeline-container table.timeline {
    border-radius: 10px;
}

/* Not available time */
.timeline td.not_worked_time {
    background: #f5f5f5;
}

/* Available time */
.timeline td.free_time {
    background: #fff;
    transition: 0.2s;
}

/* Hover effect */
.timeline td.free_time:hover {
    background: #f0f0f0;
    cursor: pointer;
}

/* Selected time */
.timeline td.selected_time {
    background: #000 !important;
    color: #fff;
    font-weight: 500;
}

/* Reserved time */
.timeline td.reserved_time {
    background: #ddd;
    color: #888;
}

/* Loading */
div#loading {
    background: rgba(255,255,255,0.8);
}

/* Form labels FIXED */
#start_date-block-container .zend_form dt,
#start_date-block-container .zend_form dt b,
#start_date-block-container .zend_form dd label {
    color: #333;
    font-size: 13px;
}

/* Input fields */
input, select, textarea {
    border-radius: 8px !important;
    border: 1px solid #ddd !important;
    padding: 10px !important;
}

/* Focus effect */
input:focus, select:focus, textarea:focus {
    border-color: #000 !important;
    outline: none;
}

/* ===== END ===== */