/* Cadence — minimal overrides. Tailwind via CDN handles the rest. */

/* --- Calendar timeline --- */
.cal-timeline {
    position: relative;
    height: 960px;        /* 24 hours × 40px */
    overflow: hidden;
    user-select: none;
    cursor: crosshair;
}
.cal-hour-row {
    position: absolute;
    left: 0;
    right: 0;
    height: 40px;
    border-top: 1px dashed rgba(127, 127, 127, 0.25);
}
.cal-hour-label {
    position: absolute;
    left: 4px;
    top: -7px;
    font-size: 10px;
    background: inherit;
    padding: 0 2px;
    opacity: 0.6;
}
.cal-block {
    position: absolute;
    left: 50px;
    right: 4px;
    border-radius: 4px;
    color: #fff;
    padding: 2px 6px;
    font-size: 11px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.cal-block-label {
    font-weight: 500;
}
.cal-block-time {
    display: block;
    font-size: 10px;
    opacity: 0.85;
}
.cal-block-del {
    position: absolute;
    top: 1px;
    right: 4px;
    background: transparent;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
}
.cal-ghost {
    position: absolute;
    left: 50px;
    right: 4px;
    background: rgba(16, 185, 129, 0.35);
    border: 1px dashed rgba(16, 185, 129, 0.85);
    border-radius: 4px;
    pointer-events: none;
}
