/* ─── Master week schedule views (shared by AppointmentsPage + MasterPanelPage) ─── */
.crm-week-slot {
    border-radius: 5px;
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}
.crm-week-exp-wrap {
    border: 1px solid #f0eeeb;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
}
.crm-week-time-col {
    width: 46px;
    flex-shrink: 0;
    border-right: 1px solid #f0eeeb;
    padding-top: 36px;
    background: #fafaf8;
}
.crm-week-time-lbl {
    height: 48px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 3px 8px 0 0;
    font-size: 10px;
    color: #9ca3af;
    font-weight: 500;
}
.crm-week-days-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}
.crm-week-day-hdr {
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    border-bottom: 1px solid #f0eeeb;
    border-right: 1px solid #f0eeeb;
    background: #fafaf8;
    cursor: pointer;
}
.crm-week-day-hdr:last-child { border-right: none; }
.crm-week-hdr-name { font-size: 9px; font-weight: 500; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.05em; }
.crm-week-hdr-num  { font-size: 14px; font-weight: 500; color: #212529; }
.crm-week-day-hdr.w-today .crm-week-hdr-name { color: #0F6E56; }
.crm-week-day-hdr.w-today .crm-week-hdr-num {
    width: 24px; height: 24px; border-radius: 50%;
    background: #1D9E75; color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 12px;
}
.crm-week-day-body {
    border-right: 1px solid #f0eeeb;
    position: relative;
}
.crm-week-day-body:last-child { border-right: none; }
.crm-week-hline { height: 48px; border-bottom: 1px solid #f0eeeb; }
.crm-week-hline:last-child { border-bottom: none; }
.crm-week-event {
    position: absolute;
    left: 2px; right: 2px;
    border-radius: 5px;
    padding: 3px 5px;
    font-size: 9px;
    overflow: hidden;
    cursor: default;
    border-left: 3px solid;
    line-height: 1.3;
}
.crm-week-event-name { font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.crm-now-line { position: absolute; left: 0; right: 0; height: 1.5px; background: #1D9E75; z-index: 3; }
.crm-now-dot { position: absolute; left: -3px; top: -3.5px; width: 7px; height: 7px; border-radius: 50%; background: #1D9E75; }
