.driver-overlay {
    position: fixed;
    z-index: 9000;
    background: rgba(10, 18, 16, 0.56);
    pointer-events: none;
}

.driver-stage {
    position: fixed;
    z-index: 9001;
    border: 3px solid #f3c970;
    border-radius: 10px;
    box-shadow: 0 0 0 1px rgba(18, 60, 49, 0.24), 0 18px 50px rgba(0, 0, 0, 0.24);
    pointer-events: none;
}

.driver-highlight {
    position: relative;
    z-index: 9001;
}

.driver-popover {
    position: fixed;
    z-index: 9003;
    max-width: min(360px, calc(100vw - 32px));
    padding: 18px;
    border-radius: 8px;
    background: #fffdf8;
    color: #16362f;
    box-shadow: 0 24px 80px rgba(7, 20, 16, 0.28);
}

.driver-popover h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.driver-popover p {
    margin: 0;
    color: #52615d;
    line-height: 1.5;
}

.driver-popover-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 16px;
}

.driver-popover-actions button {
    border: 0;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    font: inherit;
}

.driver-popover-actions button[data-driver-next] {
    background: #123c31;
    color: #fff;
}

.driver-popover-actions button[data-driver-prev],
.driver-popover-actions button[data-driver-close] {
    background: #edf2ef;
    color: #123c31;
}
