.details-panel{

    display:flex;
    flex-direction:column;
    gap:15px;
}

.details-panel label{

    font-weight:600;
}

.details-panel input,
.details-panel textarea{

    padding:12px;

    border-radius:10px;

    border:1px solid #d0d5dd;
}

.details-panel textarea{

    min-height:100px;

    resize:vertical;
}

#save-details{

    margin-top:10px;

    background:#2E7D32;

    color:#fff;

    border:none;

    padding:14px;

    border-radius:12px;

    cursor:pointer;

    font-weight:600;
}

.schedule-panel{

    display:flex;
    flex-direction:column;
    gap:15px;
}

.schedule-panel label{

    font-weight:600;
}

.schedule-panel input{

    padding:12px;

    border-radius:10px;

    border:1px solid #d0d5dd;
}

#save-reschedule{

    margin-top:10px;

    background:#2E7D32;

    color:#fff;

    border:none;

    padding:14px;

    border-radius:12px;

    cursor:pointer;

    font-weight:600;
}

.dispatcher-header{

    margin-bottom:25px;
}

.dispatcher-header h2{

    font-size:28px;
    margin-bottom:10px;
}

.dispatcher-status{

    background:#FEF3C7;
    color:#92400E;

    padding:6px 12px;

    border-radius:999px;

    font-size:13px;
    font-weight:600;
}

.dispatcher-tabs{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:25px;
}

.dispatcher-tab{

    background:#f3f4f6;

    border:none;

    padding:10px 16px;

    border-radius:10px;

    cursor:pointer;

    font-weight:600;
    
    flex:1 1 auto;
}

.dispatcher-tab.active{

    background:#2E7D32;
    color:#fff;
}

.dispatcher-content p{

    margin-bottom:15px;
    line-height:1.6;
}

.booking-info p{

    margin-bottom:12px;
    line-height:1.5;

}

#booking-status-select{

    width:100%;
    margin-top:10px;

    padding:10px;

    border-radius:10px;

    border:1px solid #d0d5dd;
}

#save-booking-status{

    margin-top:20px;

    width:100%;

    background:#2E7D32;

    color:#fff;

    border:none;

    padding:12px;

    border-radius:12px;

    font-weight:600;

    cursor:pointer;
}

#easyshine-calendar{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    font-family:Arial, sans-serif;
}

/* Toolbar */
.fc .fc-toolbar-title{
    font-size:28px;
    font-weight:700;
    color:#1d2939;
}

.fc .fc-button{
    background:#2E7D32 !important;
    border:none !important;
    padding:10px 16px !important;
    border-radius:10px !important;
    font-weight:600 !important;
}

.fc .fc-button:hover{
    background:#256428 !important;
}

/* Events */
.fc-event{
    border:none !important;
    border-radius:8px !important;
    padding:4px 6px !important;
    font-size:13px;
    font-weight:600;
}

/* Calendar cells */
.fc-theme-standard td,
.fc-theme-standard th{
    border:1px solid #e5e7eb;
}

.fc-daygrid-day-number{
    color:#111827;
    font-weight:600;
}

/* =========================
   DISPATCHER WORKSPACE
========================= */

#dispatcher-sidebar{

    background:#ffffff;

    border-radius:24px;

    padding:30px;

    box-shadow:0 10px 30px rgba(0,0,0,0.06);

    position:sticky;

    top:30px;
}

.dispatcher-header{

    padding-bottom:25px;

    border-bottom:1px solid #e5e7eb;
}

.dispatcher-content{

    margin-top:25px;
}

.dispatcher-tab{

    transition:.2s ease;
}

.dispatcher-tab:hover{

    transform:translateY(-2px);
}

/* =========================
   WORKSPACE CARDS
========================= */

.workspace-card{

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:20px;

    padding:24px;

    margin-bottom:20px;

    box-shadow:0 4px 12px rgba(0,0,0,0.04);
}

.workspace-card h3{

    font-size:18px;

    margin-bottom:20px;

    color:#111827;
}

.workspace-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:16px;
}

.workspace-full{

    grid-column:1 / -1;
}

/* =========================
   PILL EVENTS
========================= */

.fc-event{

    border:none !important;

    border-radius:999px !important;

    padding:0 !important;

    overflow:hidden !important;

    box-shadow:
    0 2px 8px rgba(0,0,0,.12);

    transition:.2s ease;
}

.fc-event:hover{

    transform:translateY(-1px);
}

.fc-event-main{

    padding:0 !important;
}

.easyshine-pill-event{
    
    width:100%;
    
    border-radius:999px;

    display:flex;

    align-items:center;

    gap:6px;

    padding:6px 12px;

    font-size:12px;

    font-weight:700;

    color:#ffffff;

    white-space:nowrap;

    overflow:hidden;

    text-overflow:ellipsis;
}

.easyshine-pill-time{

    opacity:.95;
}

.easyshine-pill-name{

    overflow:hidden;

    text-overflow:ellipsis;
}

/* spacing between events */

.fc-daygrid-event-harness{

    margin-bottom:6px;
}

/* ========================================
   CALENDAR EVENTS STYLE
======================================== */

.easyshine-event{

    background:#f59e0b;

    color:#ffffff;

    border-radius:999px;

    padding:6px 12px;

    font-size:12px;

    font-weight:700;

    display:flex;

    align-items:center;

    gap:6px;

    white-space:nowrap;

    overflow:hidden;

    text-overflow:ellipsis;

    box-shadow:0 2px 8px rgba(0,0,0,0.15);
}

.easyshine-event-time{

    font-weight:800;
}

.easyshine-event-name{

    font-weight:600;
}

/* REMOVE FULLCALENDAR DEFAULT STYLE */

.fc-daygrid-event{

    border:none !important;

    background:transparent !important;

    padding:0 !important;
}

.fc-event-main{

    padding:0 !important;
}

/* ========================================
   DISPATCHER HEADER CARD
======================================== */

.dispatcher-header{

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:24px;

    padding:24px;

    margin-bottom:20px;
}

.dispatcher-job-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:18px;
}

.dispatcher-job-id{

    font-size:13px;

    font-weight:700;

    color:#64748b;

    letter-spacing:.5px;
}

.dispatcher-service-time{

    font-size:32px;

    font-weight:800;

    color:#0f172a;

    margin-bottom:10px;
}

.dispatcher-service-type{

    font-size:26px;

    font-weight:900;

    line-height:1.1;

    text-transform:uppercase;

    color:#0f172a;

    margin-bottom:14px;
}

.dispatcher-customer{

    font-size:20px;

    font-weight:700;

    color:#111827;

    margin-bottom:8px;
}

.dispatcher-address{

    font-size:15px;

    line-height:1.6;

    color:#64748b;
}

/* =========================
DISPATCHER HEADER
========================= */

.dispatcher-header{

    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:20px;
    margin-bottom:16px;

}

.dispatcher-top-row{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:14px;

}

.dispatcher-job-id{

    font-size:13px;
    font-weight:700;
    color:#6b7280;
    letter-spacing:1px;

}

.dispatcher-status{

    background:#fef3c7;
    color:#92400e;
    font-size:12px;
    font-weight:700;
    padding:6px 12px;
    border-radius:999px;

}

.dispatcher-service-time{

    font-size:28px;
    font-weight:800;
    color:#111827;
    margin-bottom:8px;

}

.dispatcher-service-type{

    font-size:24px;
    font-weight:800;
    color:#111827;
    text-transform:uppercase;
    margin-bottom:12px;

}

.dispatcher-customer{

    font-size:18px;
    font-weight:700;
    color:#111827;
    margin-bottom:6px;

}

.dispatcher-address{

    font-size:15px;
    color:#6b7280;
    line-height:1.5;

}