/* Task #1298/#1299 — shared custom half-hour time picker.
   Applied to any <input class="half-hour-time"> by js/half-hour-picker.js. */
.hhp-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.hhp-wrap input { padding-right: 30px; }
.hhp-icon {
    position: absolute;
    right: 4px;
    border: none;
    background: transparent;
    font-size: 14px;
    line-height: 1;
    padding: 2px 4px;
    cursor: pointer;
    color: #6c757d;
}
#halfHourPicker {
    display: none;
    position: fixed;
    z-index: 100000;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,.18);
    padding: 4px;
    gap: 4px;
}
#halfHourPicker .hhp-col {
    display: flex;
    flex-direction: column;
    max-height: 210px;
    overflow-y: auto;
    min-width: 52px;
}
#halfHourPicker .hhp-opt {
    border: none;
    background: transparent;
    padding: 5px 12px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    color: #212529;
}
#halfHourPicker .hhp-opt:hover { background: #e9ecef; }
#halfHourPicker .hhp-opt.active { background: #0d6efd; color: #fff; }
