.topBar {
    height:45px;
    z-index:10000;
}

:root {
    --wr-brand-green: #7fb048;
    --wr-brand-teal: #5cbfb9;
    --wr-brand-solid: #6bb981;
    --wr-brand-solid-hover: #60aa76;
    --wr-ink: #0b1220;
    --wr-muted: #5b6572;
    --wr-surface: #ffffff;
    --wr-surface-soft: #f4f7f3;
    --wr-border: #dfe8df;
    --wr-gradient: linear-gradient(120deg, var(--wr-brand-green), var(--wr-brand-teal));
    --wr-gradient-soft: linear-gradient(120deg, rgba(127, 176, 72, 0.14), rgba(92, 191, 185, 0.16));
    --wr-shadow-soft: 0 8px 26px rgba(11, 18, 32, 0.12);
    --wr-shadow-lift: 0 12px 34px rgba(92, 191, 185, 0.26);
}

.topBar.bg-primary,
.topBar {
    background: var(--wr-gradient) !important;
    box-shadow: none !important;
    border-bottom: 0 !important;
}

body {
    background: #ffffff !important;
}

body.auth-screen {
    --wr-auth-bg: #fbfbf9;
    --wr-auth-grid: rgba(212, 212, 207, 0.55);
    --wr-auth-card: rgba(255, 255, 255, 0.94);
    color: #0b1220;
    background: var(--wr-auth-bg) !important;
}

/* Opaque cover that hides the app behind the auth screen + soft colored blobs */
body.auth-screen::before {
    content: '';
    position: fixed;
    top: var(--wr-topbar-h, 45px);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9990;
    background:
        radial-gradient(28rem 28rem at -2% -6%, rgba(141, 185, 57, 0.35), transparent 70%),
        radial-gradient(32rem 32rem at 102% 10%, rgba(95, 199, 209, 0.35), transparent 70%),
        var(--wr-auth-bg);
    background-repeat: no-repeat;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.28s ease;
}

/* Grid pattern on top, fading out toward the edges via a radial mask (like whenride.com) */
body.auth-screen::after {
    content: '';
    position: fixed;
    top: var(--wr-topbar-h, 45px);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9990;
    background:
        linear-gradient(var(--wr-auth-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--wr-auth-grid) 1px, transparent 1px);
    background-size: 56px 56px, 56px 56px;
    background-position: -1px -1px, -1px -1px;
    -webkit-mask-image: radial-gradient(at center top, #000 40%, transparent 80%);
    mask-image: radial-gradient(at center top, #000 40%, transparent 80%);
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

body.auth-screen.auth-screen-exit::before,
body.auth-screen.auth-screen-exit::after {
    opacity: 0;
    pointer-events: none;
}

body.auth-screen .loading-window-container,
body.auth-screen .loading-window {
    display: none !important;
}

body.auth-screen .modal-backdrop {
    background: transparent !important;
    z-index: 9991 !important;
}

body.auth-screen #loginModal,
body.auth-screen #passwordModal,
body.auth-screen #recoverModal {
    z-index: 9992 !important;
}

body.auth-screen .modal-content {
    background: var(--wr-auth-card) !important;
    border: 1px solid rgba(212, 212, 207, 0.82) !important;
    box-shadow: 0 1px 2px rgba(10, 20, 30, 0.04), 0 20px 50px rgba(10, 20, 30, 0.09);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

body.auth-screen #main-loading-icon,
body.auth-screen #dashboard-link,
body.auth-screen #unplanned-rides,
body.auth-screen #availability-requests,
body.auth-screen #topBarUserMenu {
    opacity: 0 !important;
    transform: translateY(-8px) scale(0.96);
    pointer-events: none !important;
    visibility: hidden;
}

#main-loading-icon,
#dashboard-link,
#unplanned-rides,
#availability-requests,
#topBarUserMenu {
    animation: wrTopbarControlsIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

#dashboard-link {
    animation-delay: 0.02s;
}

#unplanned-rides {
    animation-delay: 0.08s;
}

#availability-requests {
    animation-delay: 0.14s;
}

#topBarUserMenu {
    animation-delay: 0.2s;
}

@keyframes wrTopbarControlsIn {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.96);
    }

    to {
        opacity: 1;
        /* transform: none i.p.v. translateY(0) scale(1): anders houdt #unplanned-rides
           door animation-fill-mode:both een transform en wordt het de containing block
           voor zijn position:fixed kind (#unplanned-rides-body), waardoor right:0 niet
           tegen de schermrand uitlijnt. */
        transform: none;
    }
}

body.app-loading-sequence:not(.app-loaded-sequence) .topBar,
body.app-loading-sequence:not(.app-loaded-sequence) #screen-header > *,
body.app-loading-sequence:not(.app-loaded-sequence) .visualization[data-vis-content="tl"],
body.app-loading-sequence:not(.app-loaded-sequence) #main-ride-table,
body.app-loading-sequence:not(.app-loaded-sequence) #main-ds-table,
body.app-loading-sequence:not(.app-loaded-sequence) #main-nav-tabs,
body.app-loading-sequence:not(.app-loaded-sequence) #main-fab {
    opacity: 0;
    pointer-events: none;
}

body.app-loading-sequence:not(.app-loaded-sequence) .topBar {
    transform: translate3d(0, -14px, 0);
}

body.app-loading-sequence:not(.app-loaded-sequence) #screen-header > * {
    transform: translate3d(0, 12px, 0);
}

body.app-loading-sequence:not(.app-loaded-sequence) .visualization[data-vis-content="tl"],
body.app-loading-sequence:not(.app-loaded-sequence) #main-ride-table,
body.app-loading-sequence:not(.app-loaded-sequence) #main-ds-table {
    transform: translate3d(0, 14px, 0) scale(0.992);
}

body.app-loading-sequence:not(.app-loaded-sequence) #main-nav-tabs {
    transform: translate3d(0, 18px, 0) scale(0.98);
}

body.app-loading-sequence:not(.app-loaded-sequence) #main-fab {
    transform: translate3d(0, 18px, 0) scale(0.9);
}

body.app-loaded-sequence .topBar {
    animation: wrScreenTopbarIn 0.46s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.app-loaded-sequence #screen-header > * {
    animation: wrScreenElementIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.app-loaded-sequence #screen-header > *:nth-child(1) {
    animation-delay: 0.16s;
}

body.app-loaded-sequence #screen-header > *:nth-child(2) {
    animation-delay: 0.24s;
}

body.app-loaded-sequence .visualization[data-vis-content="tl"],
body.app-loaded-sequence #main-ride-table,
body.app-loaded-sequence #main-ds-table {
    animation: wrScreenTimelineIn 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.34s both;
}

body.app-loaded-sequence #main-nav-tabs {
    animation: wrScreenFooterIn 0.52s cubic-bezier(0.22, 1, 0.36, 1) 0.52s both;
}

body.app-loaded-sequence #main-fab {
    animation: wrScreenFabIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.62s both;
}

@keyframes wrScreenTopbarIn {
    from {
        opacity: 0;
        transform: translate3d(0, -14px, 0);
    }

    to {
        opacity: 1;
        /* transform: none i.p.v. translate3d(0,0,0): anders blijft .topBar door
           animation-fill-mode:both een transform houden en wordt hij het containing
           block voor position:fixed kinderen (o.a. #unplanned-rides-body), waardoor
           right:0 niet tegen de schermrand uitlijnt. */
        transform: none;
    }
}

@keyframes wrScreenElementIn {
    from {
        opacity: 0;
        transform: translate3d(0, 12px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes wrScreenTimelineIn {
    from {
        opacity: 0;
        transform: translate3d(0, 14px, 0) scale(0.992);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes wrScreenFooterIn {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes wrScreenFabIn {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.app-loading-sequence:not(.app-loaded-sequence) .topBar,
    body.app-loading-sequence:not(.app-loaded-sequence) #screen-header > *,
    body.app-loading-sequence:not(.app-loaded-sequence) .visualization[data-vis-content="tl"],
    body.app-loading-sequence:not(.app-loaded-sequence) #main-ride-table,
    body.app-loading-sequence:not(.app-loaded-sequence) #main-ds-table,
    body.app-loading-sequence:not(.app-loaded-sequence) #main-nav-tabs,
    body.app-loading-sequence:not(.app-loaded-sequence) #main-fab,
    body.app-loaded-sequence .topBar,
    body.app-loaded-sequence #screen-header > *,
    body.app-loaded-sequence .visualization[data-vis-content="tl"],
    body.app-loaded-sequence #main-ride-table,
    body.app-loaded-sequence #main-ds-table,
    body.app-loaded-sequence #main-nav-tabs,
    body.app-loaded-sequence #main-fab {
        opacity: 1;
        transform: none;
        animation: none;
        pointer-events: auto;
    }
}

.topBar:after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 35%, rgba(255, 255, 255, 0.08));
}

.topBar .userMenu {
    position: relative;
    height: 100%;
    cursor: pointer;
    transition-duration: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

.topBar .text {
    position: relative;
    display: inline-block;
}

.topBar .icon {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    margin-bottom: 0;
}

.legendaItem {
    margin-top: 2px;
}

.topBar .mainButton {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    background-color: transparent;
    width: auto;
    height: 100%;
}

.topBar .btn,
.topBar #dashboard-link button,
.topBar .userMenu button {
    min-width: 45px;
    border-radius: 12px;
    background: transparent !important;
    border-left: 0 !important;
    border-right: 0 !important;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
    transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.topBar .btn:hover,
.topBar #dashboard-link button:hover,
.topBar .userMenu:hover button {
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: none !important;
}

.topBar .btn:focus,
.topBar #dashboard-link button:focus,
.topBar .userMenu button:focus {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26), 0 4px 12px rgba(11, 18, 32, 0.13) !important;
    outline: none;
}

.topBar .btn:active,
.topBar #dashboard-link button:active,
.topBar .userMenu button:active {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    transform: translateY(0);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26), 0 4px 12px rgba(11, 18, 32, 0.13) !important;
}

.topBarBtn {
    font-size: 1.05rem;
    text-shadow: 0 1px 8px rgba(11, 18, 32, 0.24);
}

.topBarBtnText {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
}

.topBar .userMenu button {
    gap: 0.35rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.normalImage {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    background-color: transparent;
    width: auto;
    height: 100%;
}

.dropdown-item{
	font-size: 14px;
    font-weight: 600;
	padding-top: 10px !important;
	padding-bottom: 10px !important;
    color: var(--wr-ink) !important;
    background: transparent !important;
    border-radius: 8px;
    margin: 2px 0;
    transition: background-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}.dropdown-item:hover,
.dropdown-item:focus {
	background: var(--wr-gradient-soft) !important;
    color: var(--wr-ink) !important;
	cursor: pointer;
    transform: translateX(2px);
}

.dropdown-item:hover i,
.dropdown-item:focus i,
.dropdown-item:hover span,
.dropdown-item:focus span {
    color: var(--wr-ink) !important;
}

.dropdown-menu {
    padding: 8px !important;
    border: 1px solid var(--wr-border) !important;
    border-radius: 12px !important;
    box-shadow: var(--wr-shadow-soft) !important;
    background: rgba(255, 255, 255, 0.98) !important;
}

.dropdown-menu.bg-primary,
.dropdown-menu.bg-success {
    background: var(--wr-gradient) !important;
    border-color: transparent !important;
}

.modal-content {
    border-radius: 20px !important;
    overflow: hidden;
}

#maps-tab {
    height: 100%;
    padding: 0 10px 96px 10px;
}

#google-map {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--wr-shadow-soft);
}

#main-fab .dropdown-menu,
#main-fab2-btn .dropdown-menu {
    transform-origin: right bottom;
    border-radius: 18px !important;
}

#main-fab .dropdown-menu.show,
#main-fab2-btn .dropdown-menu.show {
    animation: wrFabMenuIn 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes wrFabMenuIn {
    from {
        opacity: 0;
        clip-path: inset(12% 0 0 0 round 12px);
        filter: saturate(0.96) brightness(1.04);
    }
    to {
        opacity: 1;
        clip-path: inset(0 0 0 0 round 12px);
        filter: none;
    }
}

.dropdown-item i {
    color: var(--wr-brand-green) !important;
    width: 1.25rem;
}

.dropdown-menu.bg-primary .dropdown-item.bg-primary,
.dropdown-menu.bg-success .dropdown-item.bg-success {
    background: var(--wr-brand-solid) !important;
    border-color: var(--wr-brand-solid) !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.dropdown-menu.bg-primary .dropdown-item.bg-primary:hover,
.dropdown-menu.bg-primary .dropdown-item.bg-primary:focus,
.dropdown-menu.bg-success .dropdown-item.bg-success:hover,
.dropdown-menu.bg-success .dropdown-item.bg-success:focus {
    background: var(--wr-brand-solid-hover) !important;
    border-color: var(--wr-brand-solid-hover) !important;
    color: #ffffff !important;
    filter: none !important;
    box-shadow: none !important;
}

.dropdown-menu.bg-primary .dropdown-item.bg-primary i,
.dropdown-menu.bg-success .dropdown-item.bg-success i {
    color: #ffffff !important;
    font-size: 1.15rem;
    width: 1.55rem;
}

.dropdown-menu.bg-primary .dropdown-item.bg-primary:hover i,
.dropdown-menu.bg-primary .dropdown-item.bg-primary:focus i,
.dropdown-menu.bg-success .dropdown-item.bg-success:hover i,
.dropdown-menu.bg-success .dropdown-item.bg-success:focus i {
    color: #ffffff !important;
}

.plusButton {
	right: 0;
	bottom: 1px;
    padding: 15px;
    font-size: 1rem;
    z-index:2000;
}

.bg-primary,
.bg-success {
    background: var(--wr-gradient) !important;
    border-color: transparent !important;
}

.btn-primary,
.btn-success,
button.bg-primary,
button.bg-success,
input.bg-primary,
input.bg-success,
.dropdown-item.bg-primary,
.dropdown-item.bg-success {
    background: var(--wr-brand-solid) !important;
    border-color: var(--wr-brand-solid) !important;
    color: #ffffff !important;
    font-weight: 600;
    box-shadow: none !important;
    transition: background-color 0.16s ease, border-color 0.16s ease, filter 0.18s ease;
}

.btn-primary i,
.btn-success i {
    color: #ffffff !important;
}

.btn.normal-btn.btn-primary,
.btn.normal-btn.btn-success,
.btn.normal-btn.btn-primary:hover,
.btn.normal-btn.btn-success:hover,
.btn.normal-btn.btn-primary:focus,
.btn.normal-btn.btn-success:focus {
    color: #ffffff !important;
}

.btn.normal-btn.btn-primary i,
.btn.normal-btn.btn-success i {
    color: #ffffff !important;
}

.ride-add-subride-btn,
.ride-add-subride-btn:hover,
.ride-add-subride-btn:focus,
.ride-add-subride-btn:active {
    background: #34b6f3 !important;
    border-color: #34b6f3 !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.btn-primary:hover,
.btn-success:hover,
.btn-primary:focus,
.btn-success:focus,
button.bg-primary:hover,
button.bg-primary:focus,
button.bg-success:hover,
button.bg-success:focus,
input.bg-primary:hover,
input.bg-primary:focus,
input.bg-success:hover,
input.bg-success:focus,
.dropdown-item.bg-primary:hover,
.dropdown-item.bg-primary:focus,
.dropdown-item.bg-success:hover,
.dropdown-item.bg-success:focus {
    background: var(--wr-brand-solid-hover) !important;
    border-color: var(--wr-brand-solid-hover) !important;
    color: #ffffff !important;
    filter: none !important;
    transform: none !important;
    box-shadow: none !important;
}

.btn-primary:active,
.btn-success:active {
    transform: translateY(0);
}

#main-fab .dropdown-menu .dropdown-item.bg-primary,
#main-fab2-btn .dropdown-menu .dropdown-item.bg-primary,
#main-fab .dropdown-menu .dropdown-item.bg-success,
#main-fab2-btn .dropdown-menu .dropdown-item.bg-success {
    background: transparent !important;
    border-color: transparent !important;
    border-radius: 12px !important;
    color: #ffffff !important;
}

#main-fab .dropdown-menu .dropdown-item.bg-primary:hover,
#main-fab .dropdown-menu .dropdown-item.bg-primary:focus,
#main-fab2-btn .dropdown-menu .dropdown-item.bg-primary:hover,
#main-fab2-btn .dropdown-menu .dropdown-item.bg-primary:focus,
#main-fab .dropdown-menu .dropdown-item.bg-success:hover,
#main-fab .dropdown-menu .dropdown-item.bg-success:focus,
#main-fab2-btn .dropdown-menu .dropdown-item.bg-success:hover,
#main-fab2-btn .dropdown-menu .dropdown-item.bg-success:focus {
    background: rgba(255, 255, 255, 0.16) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    transform: none !important;
}

#main-fab .dropdown-menu .dropdown-item i,
#main-fab2-btn .dropdown-menu .dropdown-item i {
    color: #ffffff !important;
}

.unplanned-ride-card {
    position: relative;
    border: 2px solid rgba(15, 23, 42, 0.14);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.16);
    color: #18212c;
}

.unplanned-ride-card-done {
    background-color: #95d36c !important;
    border-color: #4f8f25;
}

/* Manual rit: opvallende geel-zwarte hazard-rand zodat hij eruit springt,
   net als een manual rit-object in de timeline. */
.unplanned-ride-card-manual {
    border: 3px solid #111 !important;
    /* geel-zwart diagonaal streeppatroon (hazard tape) */
    border-image: repeating-linear-gradient(45deg, #facc15 0 6px, #111 6px 12px) 3 !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.22);
}

.theme-mode-switcher {
    display: flex;
    align-items: stretch;
    flex-direction: row;
    gap: 4px;
    width: 100%;
    min-width: 340px;
    box-sizing: border-box;
    padding: 0 !important;
    background: transparent !important;
}

.theme-mode-switcher.dropdown-item:hover,
.theme-mode-switcher.dropdown-item:focus {
    background: transparent !important;
    transform: none;
}

.theme-mode-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    height: auto;
    padding: 9px 10px !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 8px;
    color: var(--wr-ink, #18212c) !important;
    cursor: pointer;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.theme-mode-button,
.theme-mode-button i,
.theme-mode-button .theme-mode-button-label {
    color: #18212c !important;
}

.theme-mode-button::after {
    content: none;
    display: none;
}

.theme-mode-button-label {
    display: inline-block;
    max-width: none;
    margin-left: 8px;
    opacity: 1;
    overflow: visible;
    color: inherit !important;
    font-size: inherit;
    font-weight: inherit;
}

.theme-mode-button:hover,
.theme-mode-button:focus {
    background: #f2f6f4 !important;
    color: #18212c !important;
    outline: none;
    transform: none;
}

.theme-mode-button:hover i,
.theme-mode-button:focus i,
.theme-mode-button:hover .theme-mode-button-label,
.theme-mode-button:focus .theme-mode-button-label,
.theme-mode-button.active i,
.theme-mode-button.active .theme-mode-button-label {
    color: #18212c !important;
}

.theme-mode-button.active {
    background: #e8f3f2 !important;
    color: #18212c !important;
    box-shadow: inset 3px 0 0 #0f8f7f;
}

.unplanned-ride-card-actions {
    gap: 6px;
    padding-top: 2px;
}

.ride-card-action {
    position: relative;
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 10px !important;
    color: #ffffff !important;
    outline: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    letter-spacing: 0;
    background: var(--ride-card-action-bg, #0f8f7f) !important;
    background-color: var(--ride-card-action-bg, #0f8f7f) !important;
    background-image: none !important;
    box-shadow: none !important;
}

.whenride-action-locked,
.whenride-action-locked:hover,
.whenride-action-locked:focus,
.whenride-action-locked:active {
    cursor: wait !important;
    opacity: 0.68 !important;
    pointer-events: none !important;
    transform: none !important;
}

.ride-card-action.btn,
.ride-card-action.btn-primary,
.ride-card-action.btn-outline-primary {
    background: var(--ride-card-action-bg, #0f8f7f) !important;
    background-color: var(--ride-card-action-bg, #0f8f7f) !important;
    background-image: none !important;
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}

.ride-card-action i {
    color: #ffffff !important;
    font-size: 1.08rem;
    line-height: 1;
}

.ride-card-action-delete {
    --ride-card-action-bg: #dc3545;
    --ride-card-action-tooltip-bg: #dc3545;
    background-color: #dc3545 !important;
    background-image: none !important;
    border: 0 !important;
}

.ride-card-action-edit {
    --ride-card-action-bg: #17a2b8;
    --ride-card-action-tooltip-bg: #17a2b8;
    background-color: #17a2b8 !important;
    background-image: none !important;
    border: 0 !important;
}

.ride-card-action-plan {
    --ride-card-action-bg: #0f8f7f;
    --ride-card-action-tooltip-bg: #0f8f7f;
    background-color: #0f8f7f !important;
    background-image: none !important;
    border: 0 !important;
}

.ride-card-action:hover,
.ride-card-action:focus,
.ride-card-action:active,
.ride-card-action.btn:hover,
.ride-card-action.btn:focus,
.ride-card-action.btn:active,
.ride-card-action.btn-primary:hover,
.ride-card-action.btn-primary:focus,
.ride-card-action.btn-primary:active {
    background: var(--ride-card-action-bg, #0f8f7f) !important;
    background-color: var(--ride-card-action-bg, #0f8f7f) !important;
    background-image: none !important;
    border: 0 !important;
    color: #ffffff !important;
    outline: none !important;
    filter: brightness(1.04);
    transform: translateY(-1px);
    box-shadow: none !important;
}

.ride-card-action::after {
    content: attr(data-label);
    position: absolute;
    right: 50%;
    bottom: calc(100% + 8px);
    z-index: 50;
    min-width: max-content;
    max-width: 180px;
    padding: 5px 9px;
    border-radius: 9px;
    background: var(--ride-card-action-tooltip-bg, #62bbb2);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.15;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateX(50%) translateY(3px);
    transition: opacity 0.14s ease, transform 0.14s ease;
}

.ride-card-action::before {
    content: '';
    position: absolute;
    right: 50%;
    bottom: calc(100% + 3px);
    z-index: 51;
    width: 8px;
    height: 8px;
    background: var(--ride-card-action-tooltip-bg, #62bbb2);
    pointer-events: none;
    opacity: 0;
    transform: translateX(50%) rotate(45deg);
    transition: opacity 0.14s ease;
}

.ride-card-action:hover::after,
.ride-card-action:focus::after,
.ride-card-action:hover::before,
.ride-card-action:focus::before {
    opacity: 1;
}

.ride-card-action:hover::after,
.ride-card-action:focus::after {
    transform: translateX(50%) translateY(0);
}

#unplanned-rides-plan-all-btn.btn-primary {
    background: #ffffff !important;
    color: var(--wr-ink) !important;
    border: 1px solid var(--wr-border) !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 8px rgba(11, 18, 32, 0.08) !important;
}

#unplanned-rides-plan-all-btn.btn-primary:hover,
#unplanned-rides-plan-all-btn.btn-primary:focus {
    background: #ffffff !important;
    color: var(--wr-ink) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(11, 18, 32, 0.12) !important;
}

.bmd-btn-fab.dropdown-toggle::after {
    display: none;
}

.bmd-btn-fab,
.plusButton,
#main-fab2-button {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    padding: 0 !important;
    aspect-ratio: 1 / 1;
    border-radius: 999px !important;
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.plusButton,
#main-fab2-button {
    box-shadow: 0 8px 22px rgba(11, 18, 32, 0.18), 0 16px 42px rgba(92, 191, 185, 0.3) !important;
}

.plusButton i,
#main-fab2-button i {
    color: #ffffff !important;
    font-size: 1.05rem;
}

.smallPlusButton {
	padding:10px;
	cursor:pointer;
}

.hover-grow {
	cursor: pointer;
	transition: 0.2s;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.hover-grow:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.hover-red {
	cursor: pointer;
	transition: 0.2s;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}
.hover-red:hover {
	color: #de9898;
}

.topBar .logoIcon {
    position: relative;
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    top: 15%;
    height: 70%;
    cursor: pointer;
    transition-duration: 0.3s;
}.topBar .logoIcon:hover {
    margin-right: 20px;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.topBar .btn {
    position: relative;
    height: 100%;
    cursor: pointer;
    transition-duration: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

.navBar1 {
    width: auto;
    left: 10px;
    bottom: 10px;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 6px;
    padding: 6px;
    background: var(--wr-gradient) !important;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 18px;
    box-shadow: var(--wr-shadow-soft);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.navBar1 .bottomBarBtn {
    display: flex;
    flex: 0 0 auto;
    min-width: 80px;
}

.navBar1 .nav-link {
    height: 58px;
    min-width: 80px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px !important;
    color: #ffffff !important;
    background: transparent !important;
    font-size: 0.8em;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.05;
    transition: background-color 0.16s ease, color 0.16s ease, box-shadow 0.18s ease;
}

.navBar1 .nav-link .navicon {
    color: inherit !important;
    font-size: 2em;
    margin-bottom: 4px;
}

.navBar1 .nav-link:hover {
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
    transform: none !important;
}

.navBar1 .nav-link.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.2) !important;
    box-shadow: none !important;
}

.navBar1 #main-fab2-btn {
    margin-left: auto;
    display: none;
    align-items: center;
}

.navBar1 #main-fab2-button {
    width: 46px;
    height: 46px;
    min-width: 46px;
    padding: 0;
    background: rgba(255, 255, 255, 0.2) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28), 0 8px 18px rgba(11, 18, 32, 0.14) !important;
}

@media (max-width: 767px) {
    .navBar1 {
        width: 100% !important;
        left: 0 !important;
        bottom: 0 !important;
        border-radius: 0 !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        gap: 0 !important;
        padding: 4px !important;
        overflow: visible !important;
    }

    .navBar1 .bottomBarBtn {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        width: auto !important;
        display: flex !important;
    }

    .navBar1 .nav-link {
        width: 100% !important;
        min-width: 0 !important;
        height: 52px !important;
        padding: 0.45rem 0.2rem !important;
        font-size: 0.6em !important;
        white-space: normal;
    }

    .navBar1 .nav-link .navicon {
        font-size: 1.8em !important;
        margin-top: 0;
        margin-bottom: 3px;
    }

    .navBar1 #main-tab-kaart-btn {
        display: none !important;
    }

    .navBar1 #main-fab2-btn {
        display: flex !important;
        flex: 0 0 15% !important;
        min-width: 48px !important;
        width: 15% !important;
        justify-content: center;
    }

    .navBar1 #main-fab2-button {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        padding: 0 !important;
        align-self: center;
    }

    #main-fab {
        display: none !important;
    }

    .plusButton {
        right: 6px !important;
        bottom: 3px !important;
        padding: 10px !important;
    }
}

#dashboard .tabs-wrapper {
    left: 10px;
    bottom: 10px;
    max-width: calc(100% - 88px);
    padding: 6px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--wr-border);
    border-radius: 16px;
    box-shadow: var(--wr-shadow-soft);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

#dashboard #dashboardTabList {
    display: flex;
    gap: 6px;
    padding: 0 !important;
}

#dashboard #dashboardTabList .nav-link {
    min-height: 42px;
    padding: 0.55rem 1rem !important;
    margin: 0 !important;
    border-radius: 12px !important;
    color: var(--wr-muted) !important;
    background: transparent !important;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.15;
    box-shadow: none;
    transition: background-color 0.16s ease, color 0.16s ease, box-shadow 0.18s ease;
}

#dashboard #dashboardTabList .nav-link:hover {
    background: var(--wr-gradient-soft) !important;
    color: var(--wr-ink) !important;
    transform: none !important;
}

#dashboard #dashboardTabList .nav-link.active {
    background: var(--wr-gradient) !important;
    color: var(--wr-ink) !important;
    box-shadow: 0 4px 12px rgba(11, 18, 32, 0.13), 0 10px 24px rgba(92, 191, 185, 0.24);
}

#dashboard #dashboardTabList .listItemText {
    max-width: 16rem;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    white-space: nowrap;
}

#dashboard #dashboard-fab {
    right: 10px;
    bottom: 10px;
}

#dashboard #dashboard-fab-button {
    margin: 0;
}

.nav-tabs .nav-link {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    transform: none !important;
}

.listItem.active {
    box-shadow:inset 0 0 0 150vw rgba(0,0,0,0.3);
}

.alert {
	position:relative;
    margin-bottom: 10px;
	margin-right: 10px;
	padding-left:0px;
	padding-right:0px;
	width:500px;
	padding-top:10px;
	padding-bottom:9px;
	max-width: calc(100vw - 30px);
	border: 1px solid transparent !important;
	border-radius: 14px !important;
	box-shadow: none !important;
	overflow: hidden;
	z-index: 1040 !important;
}

.alert-success {
	background-color: #e8f7ef !important;
	border-color: #93d9b0 !important;
	color: #155b36 !important;
}

.alert-info {
	background-color: #e7f5fb !important;
	border-color: #8fd1e8 !important;
	color: #15506b !important;
}

.alert-warning {
	background-color: #fff4d6 !important;
	border-color: #f0cf65 !important;
	color: #714a00 !important;
}

.alert-danger,
.alert-error {
	background-color: #fdecea !important;
	border-color: #eea49b !important;
	color: #7a2118 !important;
}

.alert > div:first-child,
.alertCloseBtn {
	color: inherit;
}

.alertCloseBtn {
	opacity: 0.72;
	transition: opacity 0.15s ease, background-color 0.15s ease;
}

.alertCloseBtn:hover {
	background-color: rgba(15, 23, 42, 0.08);
	opacity: 1;
}

#alertsWrapper {
    position:fixed;
    top: 0px;
    right:-400px;
    padding-left:10px;
    padding-right:10px;
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: transparent;
    box-shadow: 0;
    overflow-x: hidden;
    overflow-y: auto;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    transition-duration: 0.4s;
    z-index: 10100 !important;
}
#alertsList {
	overflow-x: hidden;
	overflow-y: auto;
}
#alertsWrapperClose {
	visibility: hidden;
	position: absolute;
	right:25px;
	padding:5px;
	font-size:22px;
	overflow-x: hidden;
	overflow-y: auto;
	bottom:0px;
	cursor:pointer;
}

.tableItemNormal
{
    padding-top:15px;
    padding-bottom:35px;
    padding-left:15px;
    padding-right:25px;
}

.table-grid-stack-item {
    background-color: #f0f0f0;
    border-radius: 5px;
    overflow-x:hidden;
}

#dashboard-main {
    overflow-x: none;
}

#dashboardTabList {
    padding-right: 60px;
}

@keyframes spinner {
	to {transform: rotate(360deg);}
}

.center-notice {
    position: absolute;
    text-align: center;
    width:100%;
    padding-top:300px;
    padding-left:100px;
    padding-right:100px;
}


.nav-tabs{
    border-bottom:0;
}

#dashboard-link button:hover {
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

#dashboard #topBar #planning-link button:hover {
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

#availibility-requests-body .list-group-item {
    transition: .15s ease-in-out;
    transition-property: background-color, box-shadow, transform, border-color;
}

#availibility-requests-body .list-group-item:hover {
    background-color: #eef3f7;
    border-color: rgba(15, 23, 42, 0.16);
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.12);
    transform: translateY(-1px);
}

#topBarUserMenu .dropdown-menu:not(.bg-primary) .dropdown-item,
#topBarUserMenu .dropdown-menu:not(.bg-primary) .dropdown-item i {
    color: #18212c !important;
}

#topBarUserMenu .dropdown-menu:not(.bg-primary) .dropdown-item:hover,
#topBarUserMenu .dropdown-menu:not(.bg-primary) .dropdown-item:focus {
    background: #f2f6f4 !important;
    color: #18212c !important;
}

#topBarUserMenu .dropdown-menu:not(.bg-primary) .dropdown-item:hover i,
#topBarUserMenu .dropdown-menu:not(.bg-primary) .dropdown-item:focus i,
#topBarUserMenu .dropdown-menu:not(.bg-primary) .dropdown-item:hover span,
#topBarUserMenu .dropdown-menu:not(.bg-primary) .dropdown-item:focus span {
    color: #18212c !important;
}

#topBarUserMenu .dropdown-menu:not(.bg-primary) .gemware-os-menu-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    min-height: 42px;
    padding: 10px 12px !important;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
}

#topBarUserMenu .dropdown-menu:not(.bg-primary) .gemware-os-menu-item:hover,
#topBarUserMenu .dropdown-menu:not(.bg-primary) .gemware-os-menu-item:focus {
    transform: none;
}

#topBarUserMenu .dropdown-menu:not(.bg-primary) .gemware-os-powered-label {
    display: inline-flex;
    align-items: center;
    color: #6a7280 !important;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .02em;
    text-transform: uppercase;
}

#topBarUserMenu .dropdown-menu:not(.bg-primary) .gemware-os-menu-item img {
    height: 20px;
    width: auto;
    display: block;
    flex: 0 0 auto;
}

/* === User / settings menu === */
#topBarUserMenu .wr-user-menu {
    right: 0;
    left: auto;
    min-width: 364px;
    margin-top: 10px;
    padding: 8px !important;
    border: 1px solid var(--wr-border) !important;
    border-radius: 18px !important;
    background: var(--wr-surface) !important;
    box-shadow: 0 20px 52px rgba(11, 18, 32, 0.20), 0 3px 10px rgba(11, 18, 32, 0.08) !important;
    overflow: hidden;
}

/* slide-in reveal coming from the right edge (clip-path keeps Popper's transform intact) */
#topBarUserMenu .wr-user-menu.show {
    animation: wrUserMenuIn 0.24s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes wrUserMenuIn {
    from {
        opacity: 0;
        clip-path: inset(0 0 8% 32% round 16px);
    }
    to {
        opacity: 1;
        clip-path: inset(0 0 0 0 round 16px);
    }
}

#topBarUserMenu .wr-user-menu-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 12px;
    margin-bottom: 6px;
    border-radius: 14px;
    background: var(--wr-gradient-soft);
    cursor: pointer;
    transition: background-color 0.14s ease, box-shadow 0.14s ease, transform 0.14s ease;
}

#topBarUserMenu .wr-user-menu-header:hover,
#topBarUserMenu .wr-user-menu-header:focus {
    background: rgba(92, 191, 185, 0.16);
    box-shadow: inset 0 0 0 1px rgba(92, 191, 185, 0.26);
    outline: none;
}

#topBarUserMenu .wr-user-menu-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--wr-gradient);
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 8px 18px rgba(92, 191, 185, 0.34);
}

#topBarUserMenu .wr-user-menu-identity {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.25;
}

#topBarUserMenu .wr-user-menu-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--wr-ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#topBarUserMenu .wr-user-menu-role {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--wr-muted);
}

#topBarUserMenu .wr-user-menu-section {
    padding: 4px 0;
}

#topBarUserMenu .wr-user-menu-section + .wr-user-menu-section {
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid var(--wr-border);
}

#topBarUserMenu .wr-user-menu-label {
    padding: 2px 12px 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--wr-muted);
}

#topBarUserMenu .wr-user-menu .dropdown-item {
    display: flex;
    align-items: center;
    border-radius: 10px;
}

#topBarUserMenu .dropdown-menu.wr-user-menu .dropdown-item.wr-user-menu-logout:hover,
#topBarUserMenu .dropdown-menu.wr-user-menu .dropdown-item.wr-user-menu-logout:focus {
    background: rgba(220, 53, 69, 0.10) !important;
    color: #c92a3b !important;
}

#topBarUserMenu .dropdown-menu.wr-user-menu .dropdown-item.wr-user-menu-logout:hover i,
#topBarUserMenu .dropdown-menu.wr-user-menu .dropdown-item.wr-user-menu-logout:focus i {
    color: #c92a3b !important;
}

#topBarUserMenu .wr-user-menu .gemware-os-menu-item {
    margin-top: 6px;
    padding-top: 12px !important;
    border-top: 1px solid var(--wr-border);
}

/* theme switcher as a segmented control */
#topBarUserMenu .wr-user-menu .theme-mode-switcher {
    min-width: 0;
    gap: 4px;
    margin: 0;
    padding: 4px !important;
    border: 1px solid var(--wr-border);
    border-radius: 13px;
    background: var(--wr-surface-soft) !important;
}

#topBarUserMenu .wr-user-menu .theme-mode-button {
    flex-direction: column;
    gap: 5px;
    padding: 9px 6px !important;
    border-radius: 10px;
    background: transparent !important;
    color: var(--wr-muted) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    transform: none !important;
}

#topBarUserMenu .wr-user-menu .theme-mode-button i {
    width: auto;
    font-size: 16px;
    color: var(--wr-muted) !important;
}

#topBarUserMenu .wr-user-menu .theme-mode-button-label {
    margin-left: 0 !important;
    font-size: 12px;
    line-height: 1;
    color: inherit !important;
}

#topBarUserMenu .wr-user-menu .theme-mode-button:hover,
#topBarUserMenu .wr-user-menu .theme-mode-button:focus {
    background: transparent !important;
    color: var(--wr-muted) !important;
    box-shadow: none !important;
}

#topBarUserMenu .wr-user-menu .theme-mode-button:hover i,
#topBarUserMenu .wr-user-menu .theme-mode-button:focus i {
    color: var(--wr-muted) !important;
}

#topBarUserMenu .wr-user-menu .theme-mode-button.active {
    background: var(--wr-surface) !important;
    color: var(--wr-ink) !important;
    box-shadow: 0 2px 8px rgba(11, 18, 32, 0.13), inset 0 0 0 1px rgba(11, 18, 32, 0.04);
}

#topBarUserMenu .wr-user-menu .theme-mode-button.active i {
    color: var(--wr-brand-solid) !important;
}

body.whenride-dark #topBarUserMenu .wr-user-menu {
    background: #171f2a !important;
    border-color: #2d3949 !important;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.55) !important;
}

body.whenride-dark #topBarUserMenu .wr-user-menu-name {
    color: #e7edf4;
}

body.whenride-dark #topBarUserMenu .wr-user-menu-role,
body.whenride-dark #topBarUserMenu .wr-user-menu-label {
    color: #9fb0c3;
}

body.whenride-dark #topBarUserMenu .wr-user-menu-section + .wr-user-menu-section,
body.whenride-dark #topBarUserMenu .wr-user-menu .gemware-os-menu-item {
    border-color: #2d3949;
}

body.whenride-dark #topBarUserMenu .wr-user-menu .theme-mode-switcher {
    border-color: #2d3949;
    background: #101722 !important;
}

body.whenride-dark #topBarUserMenu .wr-user-menu .theme-mode-button,
body.whenride-dark #topBarUserMenu .wr-user-menu .theme-mode-button i {
    color: #9fb0c3 !important;
}

body.whenride-dark #topBarUserMenu .wr-user-menu .theme-mode-button:hover,
body.whenride-dark #topBarUserMenu .wr-user-menu .theme-mode-button:focus {
    background: #182331 !important;
    color: #dbe6f1 !important;
    box-shadow: none !important;
}

body.whenride-dark #topBarUserMenu .wr-user-menu .theme-mode-button:hover i,
body.whenride-dark #topBarUserMenu .wr-user-menu .theme-mode-button:focus i {
    color: #dbe6f1 !important;
}

body.whenride-dark #topBarUserMenu .wr-user-menu .theme-mode-button.active {
    background: #223044 !important;
    color: #e7edf4 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

body.whenride-dark #topBarUserMenu .wr-user-menu .theme-mode-button.active:hover,
body.whenride-dark #topBarUserMenu .wr-user-menu .theme-mode-button.active:focus {
    background: #223044 !important;
    color: #e7edf4 !important;
}

body.whenride-dark #topBarUserMenu .wr-user-menu .theme-mode-button.active i {
    color: #8fd0a0 !important;
}

@media (prefers-reduced-motion: reduce) {
    #topBarUserMenu .wr-user-menu.show {
        animation: none;
    }
}

body,
body * {
    transition-property: background-color, color, border-color, box-shadow, filter;
    transition-duration: 0.24s;
    transition-timing-function: ease;
}

@media (prefers-reduced-motion: reduce) {
    body,
    body * {
        transition-duration: 0s !important;
    }
}

body.whenride-dark {
    --wr-gradient: linear-gradient(120deg, #4f6f32, #24716d);
    --wr-gradient-soft: linear-gradient(120deg, rgba(79, 111, 50, 0.28), rgba(36, 113, 109, 0.30));
    --wr-brand-solid: #3a7050;
    --wr-brand-solid-hover: #43805d;
    background: #10151d !important;
    color: #e7edf4 !important;
    color-scheme: dark;
}

body.whenride-dark.auth-screen {
    --wr-auth-bg: #0a0d12;
    --wr-auth-grid: rgba(31, 40, 53, 0.8);
    --wr-auth-card: rgba(16, 21, 28, 0.94);
}

body.whenride-dark.auth-screen::before {
    background:
        radial-gradient(28rem 28rem at -2% -6%, rgba(141, 185, 57, 0.20), transparent 70%),
        radial-gradient(32rem 32rem at 102% 10%, rgba(95, 199, 209, 0.18), transparent 70%),
        var(--wr-auth-bg);
    background-repeat: no-repeat;
}

body.whenride-dark.auth-screen .modal-content {
    background: var(--wr-auth-card) !important;
    border-color: #1f2835 !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.32), 0 20px 50px rgba(0, 0, 0, 0.48);
}

body.whenride-dark .alert {
	box-shadow: none !important;
}

#loginModal .btn-primary,
#recoverModal .btn-primary {
    background: var(--wr-brand-solid) !important;
    border-color: var(--wr-brand-solid) !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

#loginModal .btn-primary:hover,
#loginModal .btn-primary:focus,
#recoverModal .btn-primary:hover,
#recoverModal .btn-primary:focus {
    background: var(--wr-brand-solid-hover) !important;
    border-color: var(--wr-brand-solid-hover) !important;
    filter: none !important;
    transform: none !important;
    box-shadow: none !important;
}

body.whenride-dark .alert-success {
	background-color: #123827 !important;
	border-color: #2f8a5b !important;
	color: #c8f6dc !important;
}

body.whenride-dark .alert-info {
	background-color: #123244 !important;
	border-color: #2f7f9f !important;
	color: #c4ebfa !important;
}

body.whenride-dark .alert-warning {
	background-color: #44330f !important;
	border-color: #b48723 !important;
	color: #ffe7a3 !important;
}

body.whenride-dark .alert-danger,
body.whenride-dark .alert-error {
	background-color: #461b1b !important;
	border-color: #b9534d !important;
	color: #ffd2ce !important;
}

body.whenride-dark .alertCloseBtn:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

body.whenride-dark .unplanned-ride-card {
    background-color: #243746 !important;
    border-color: #4f6474;
    color: #e7edf4;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.36);
}

body.whenride-dark .unplanned-ride-card-start {
    background-color: #1f4358 !important;
}

body.whenride-dark .unplanned-ride-card-end {
    background-color: #513826 !important;
}

body.whenride-dark .unplanned-ride-card-done {
    background-color: #284f2d !important;
    border-color: #67a85f;
}

body.whenride-dark .unplanned-ride-card-manual {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

body.whenride-dark .ride-card-action-delete {
    --ride-card-action-bg: #dc3545;
}

body.whenride-dark .ride-card-action-edit {
    --ride-card-action-bg: #17a2b8;
}

body.whenride-dark .ride-card-action-plan {
    --ride-card-action-bg: #0f8f7f;
}

body.whenride-dark .bg-white,
body.whenride-dark .bg-light,
body.whenride-dark .tab-pane.bg-white,
body.whenride-dark .modal-content,
body.whenride-dark .card,
body.whenride-dark .list-group,
body.whenride-dark .list-group-item,
body.whenride-dark .dropdown-menu,
body.whenride-dark .smartTable,
body.whenride-dark #users-summary-container .card,
body.whenride-dark #availibility-requests-body,
body.whenride-dark #unplanned-rides-body {
    background-color: #151c26 !important;
    color: #e7edf4 !important;
    border-color: #2a3442 !important;
}

body.whenride-dark .topBar,
body.whenride-dark .navBar1 {
    background: var(--wr-gradient) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

body.whenride-dark .bg-primary,
body.whenride-dark .bg-success,
body.whenride-dark select.bg-primary,
body.whenride-dark select.bg-success,
body.whenride-dark textarea.bg-primary,
body.whenride-dark textarea.bg-success,
body.whenride-dark .form-control.bg-primary,
body.whenride-dark .form-control.bg-success,
body.whenride-dark .input-group-text.bg-primary,
body.whenride-dark .input-group-text.bg-success,
body.whenride-dark .dropdown-menu.bg-primary,
body.whenride-dark .dropdown-menu.bg-success,
body.whenride-dark#dashboard #dashboardTabList .nav-link.active {
    background: var(--wr-gradient) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
}

body.whenride-dark .btn-primary,
body.whenride-dark .btn-success,
body.whenride-dark button.bg-primary,
body.whenride-dark button.bg-success,
body.whenride-dark input.bg-primary,
body.whenride-dark input.bg-success,
body.whenride-dark .dropdown-item.bg-primary,
body.whenride-dark .dropdown-item.bg-success {
    background: var(--wr-brand-solid) !important;
    border-color: var(--wr-brand-solid) !important;
    color: #ffffff !important;
}

body.whenride-dark .btn-primary:hover,
body.whenride-dark .btn-success:hover,
body.whenride-dark .btn-primary:focus,
body.whenride-dark .btn-success:focus,
body.whenride-dark button.bg-primary:hover,
body.whenride-dark button.bg-primary:focus,
body.whenride-dark button.bg-success:hover,
body.whenride-dark button.bg-success:focus,
body.whenride-dark input.bg-primary:hover,
body.whenride-dark input.bg-primary:focus,
body.whenride-dark input.bg-success:hover,
body.whenride-dark input.bg-success:focus,
body.whenride-dark .dropdown-item.bg-primary:hover,
body.whenride-dark .dropdown-item.bg-primary:focus,
body.whenride-dark .dropdown-item.bg-success:hover,
body.whenride-dark .dropdown-item.bg-success:focus {
    background: var(--wr-brand-solid-hover) !important;
    border-color: var(--wr-brand-solid-hover) !important;
    color: #ffffff !important;
}

body.whenride-dark .theme-mode-button {
    background: transparent !important;
    color: #e7edf4 !important;
}

body.whenride-dark .theme-mode-button:hover,
body.whenride-dark .theme-mode-button:focus {
    background: #223044 !important;
    color: #e7edf4 !important;
}

body.whenride-dark .theme-mode-button.active {
    background: #223044 !important;
    color: #e7edf4 !important;
    box-shadow: inset 3px 0 0 #62bbb2;
}

body.whenride-dark .ride-card-action {
    background: var(--ride-card-action-bg, #0f8f7f) !important;
    background-color: var(--ride-card-action-bg, #0f8f7f) !important;
    background-image: none !important;
    border: 0 !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

body.whenride-dark .ride-card-action.btn,
body.whenride-dark .ride-card-action.btn-primary,
body.whenride-dark .ride-card-action.btn-outline-primary,
body.whenride-dark .ride-card-action:hover,
body.whenride-dark .ride-card-action:focus,
body.whenride-dark .ride-card-action:active,
body.whenride-dark .ride-card-action.btn-primary:hover,
body.whenride-dark .ride-card-action.btn-primary:focus,
body.whenride-dark .ride-card-action.btn-primary:active {
    background: var(--ride-card-action-bg, #0f8f7f) !important;
    background-color: var(--ride-card-action-bg, #0f8f7f) !important;
    background-image: none !important;
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
}

body.whenride-dark .navBar1 .nav-link,
body.whenride-dark .navBar1 .nav-link.bg-primary,
body.whenride-dark .navBar1 .nav-link.bg-success,
body.whenride-dark .navBar1 .nav-link.active {
    background: transparent !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

body.whenride-dark .navBar1 .nav-link:hover,
body.whenride-dark .navBar1 .nav-link:focus,
body.whenride-dark .navBar1 .nav-link.bg-primary:hover,
body.whenride-dark .navBar1 .nav-link.bg-primary:focus,
body.whenride-dark .navBar1 .nav-link.bg-success:hover,
body.whenride-dark .navBar1 .nav-link.bg-success:focus,
body.whenride-dark .navBar1 .nav-link.active:hover,
body.whenride-dark .navBar1 .nav-link.active:focus {
    background: rgba(255, 255, 255, 0.14) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

body.whenride-dark .dropdown-menu {
    background: #171f2a !important;
    border: 1px solid #2d3949 !important;
}

body.whenride-dark .dropdown-item,
body.whenride-dark .dropdown-item i,
body.whenride-dark #topBarUserMenu .dropdown-menu .dropdown-item,
body.whenride-dark #topBarUserMenu .dropdown-menu .dropdown-item i {
    color: #e7edf4 !important;
}

body.whenride-dark .dropdown-item:hover,
body.whenride-dark .dropdown-item:focus {
    background: #223044 !important;
    color: #ffffff !important;
}

body.whenride-dark #topBarUserMenu .dropdown-menu:not(.bg-primary) .dropdown-item:hover,
body.whenride-dark #topBarUserMenu .dropdown-menu:not(.bg-primary) .dropdown-item:focus {
    background: #f2f6f4 !important;
    color: #18212c !important;
}

body.whenride-dark #topBarUserMenu .dropdown-menu:not(.bg-primary) .dropdown-item:hover i,
body.whenride-dark #topBarUserMenu .dropdown-menu:not(.bg-primary) .dropdown-item:focus i,
body.whenride-dark #topBarUserMenu .dropdown-menu:not(.bg-primary) .dropdown-item:hover span,
body.whenride-dark #topBarUserMenu .dropdown-menu:not(.bg-primary) .dropdown-item:focus span {
    color: #18212c !important;
}

body.whenride-dark .text-dark,
body.whenride-dark .text-primary,
body.whenride-dark .card-header,
body.whenride-dark .card-body,
body.whenride-dark label,
body.whenride-dark .custom-control-label,
body.whenride-dark #dashboard-tab-title {
    color: #e7edf4 !important;
}

body.whenride-dark #mainContentTitle,
body.whenride-dark #mainContentTitle i {
    color: #a8d47c !important;
}

body.whenride-dark .form-control,
body.whenride-dark .custom-select,
body.whenride-dark .selectr-selected,
body.whenride-dark .selectr-input,
body.whenride-dark textarea,
body.whenride-dark input[type="text"],
body.whenride-dark input[type="email"],
body.whenride-dark input[type="password"],
body.whenride-dark input[type="number"],
body.whenride-dark input[type="date"],
body.whenride-dark input[type="time"],
body.whenride-dark input[type="datetime-local"],
body.whenride-dark select {
    background-color: #101722 !important;
    border-color: #344154 !important;
    color: #edf4fb !important;
}

body.whenride-dark .form-control::placeholder,
body.whenride-dark textarea::placeholder,
body.whenride-dark input::placeholder {
    color: #8391a4 !important;
}

body.whenride-dark .input-group-text,
body.whenride-dark .timeSpawnPicker-control,
body.whenride-dark .timeLineRangeFilter-control,
body.whenride-dark .recurringTimeSpawnPicker-control {
    background: #182231 !important;
    border-color: #344154 !important;
    color: #dce6f1 !important;
}

body.whenride-dark .import-ride-review-list {
    color: #e7edf4 !important;
}

body.whenride-dark .import-ride-review-help,
body.whenride-dark .import-ride-review-empty {
    color: #aeb9c8 !important;
}

body.whenride-dark .import-ride-review-group {
    background: #111925 !important;
    border-color: #2d3949 !important;
}

body.whenride-dark .import-ride-review-group-title {
    color: #b8e38f !important;
}

body.whenride-dark .import-ride-review-card {
    background: #172131 !important;
    border-color: #344154 !important;
    color: #e7edf4 !important;
}

body.whenride-dark .import-ride-review-card-title,
body.whenride-dark .import-ride-review-location,
body.whenride-dark .import-ride-review-meta,
body.whenride-dark .import-ride-review-card strong {
    color: #e7edf4 !important;
}

body.whenride-dark .import-ride-review-meta {
    color: #c6d3e3 !important;
}

body.whenride-dark .btn-secondary,
body.whenride-dark .aside-action-close,
body.whenride-dark .bg-circle-close,
body.whenride-dark .closeBTN {
    background-color: #4f5b6b !important;
    border-color: #4f5b6b !important;
    color: #ffffff !important;
}

body.whenride-dark .aside-item,
body.whenride-dark .sideItem,
body.whenride-dark .sideItemMainContent,
body.whenride-dark .sideItemMainContentFlexDiv,
body.whenride-dark .sideItemContentDiv,
body.whenride-dark .sideItemContent {
    background: var(--aside-surface-bg-dark, #151c26) !important;
    border-color: var(--aside-surface-border-dark, #344154) !important;
    color: var(--aside-surface-text-dark, #e7edf4) !important;
}

body.whenride-dark .aside-action-bar {
    background: linear-gradient(180deg, rgba(21, 28, 38, 0.68), rgba(21, 28, 38, 0.96)) !important;
    box-shadow: none !important;
}

body.whenride-dark .search-result:hover,
body.whenride-dark .google-result:hover {
    background: #223044 !important;
}

body.whenride-dark .legend,
body.whenride-dark .legendaItem,
body.whenride-dark .modal-header,
body.whenride-dark .modal-footer {
    color: #e7edf4 !important;
    border-color: #2a3442 !important;
}

body.whenride-dark table,
body.whenride-dark .table,
body.whenride-dark .table td,
body.whenride-dark .table th {
    color: #e7edf4 !important;
    border-color: #2a3442 !important;
}

body.whenride-dark #dashboard-main .grid-stack-item,
body.whenride-dark #dashboard-main .grid-stack-item-content {
    background: #151c26 !important;
    border-color: #344154 !important;
    color: #e7edf4 !important;
}

body.whenride-dark .vis-timeline {
    background: #0f151d !important;
    border-color: #263241 !important;
    color: #dce6f1 !important;
}

body.whenride-dark .vis-time-axis,
body.whenride-dark .vis-panel,
body.whenride-dark .vis-panel.vis-top,
body.whenride-dark .vis-panel.vis-left,
body.whenride-dark .vis-panel.vis-left.vis-vertical-scroll,
body.whenride-dark .vis-panel.vis-right,
body.whenride-dark .vis-panel.vis-background,
body.whenride-dark .vis-panel.vis-center {
    background-color: #0f151d !important;
    border-color: #263241 !important;
}

body.whenride-dark .vis-panel.vis-left .vis-content,
body.whenride-dark .vis-labelset {
    background-color: #0f151d !important;
}

body.whenride-dark .vis-panel.vis-left::-webkit-scrollbar,
body.whenride-dark .vis-panel.vis-vertical-scroll::-webkit-scrollbar {
    width: 12px;
}

body.whenride-dark .vis-panel.vis-left::-webkit-scrollbar-track,
body.whenride-dark .vis-panel.vis-vertical-scroll::-webkit-scrollbar-track {
    background: #0f151d;
}

body.whenride-dark .vis-panel.vis-left::-webkit-scrollbar-thumb,
body.whenride-dark .vis-panel.vis-vertical-scroll::-webkit-scrollbar-thumb {
    background: #2d3949;
    border-radius: 8px;
}

body.whenride-dark .vis-time-axis .vis-text,
body.whenride-dark .vis-labelset .vis-label,
body.whenride-dark .vis-labelset .vis-label .vis-inner {
    color: #dce6f1 !important;
}

body.whenride-dark .vis-time-axis .vis-text.vis-major {
    color: #ffffff !important;
}

body.whenride-dark .vis-grid.vis-vertical,
body.whenride-dark .vis-grid.vis-vertical.vis-minor,
body.whenride-dark .vis-grid.vis-vertical.vis-major {
    border-left-color: #263241 !important;
}

body.whenride-dark .vis-grid.vis-horizontal,
body.whenride-dark .vis-grid.vis-horizontal.vis-minor,
body.whenride-dark .vis-grid.vis-horizontal.vis-major,
body.whenride-dark .vis-group {
    border-color: #1d2734 !important;
}

body.whenride-dark .vis-label.offline {
    background: #1a2330 !important;
    border-color: #303d4f !important;
    color: #aeb9c8 !important;
}

body.whenride-dark .vis-label.onlineAvailable {
    background: #102d39 !important;
    border-color: #3bbdb0 !important;
    color: #b9fff7 !important;
}

body.whenride-dark .vis-label.busy {
    background: #403414 !important;
    border-color: #c9a42d !important;
    color: #ffe7a0 !important;
}

body.whenride-dark .vis-saturday,
body.whenride-dark .vis-sunday {
    background-color: #141d2a !important;
}

body.whenride-dark .vis-current-time {
    background-color: #facc15 !important;
    box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.25) !important;
}

body.whenride-dark .vis-shadow {
    box-shadow: none !important;
}

body.whenride-dark .vis-item.vis-range {
    border-color: rgba(255, 255, 255, 0.12) !important;
}

body.whenride-dark .vis-item.vis-background,
body.whenride-dark .vis-item.vis-background.normal {
    background-color: #172131 !important;
    color: #cbd5e1 !important;
}

body.whenride-dark .vis-item.vis-background.inactive {
    background-color: #131922 !important;
    color: #8792a2 !important;
}

body.whenride-dark .vis-item.vis-background.negative {
    background-color: #32181c !important;
    color: #fecaca !important;
}

body.whenride-dark .vis-item.vis-range.ds.assigned {
    background-image: repeating-linear-gradient(
        45deg,
        #334155,
        #334155 10px,
        #334155 10px,
        #334155 20px
    ) !important;
}

body.whenride-dark .vis-item.vis-range.ds.unassigned,
body.whenride-dark .vis-item.vis-range.ds.disabled {
    background-image: repeating-linear-gradient(
        45deg,
        #b91c1c,
        #b91c1c 10px,
        #b91c1c 10px,
        #b91c1c 20px
    ) !important;
}

body.whenride-dark .vis-item.vis-range.ds.available {
    background: #4f46e5 !important;
}

body.whenride-dark .vis-item.vis-range.recent.ds {
    background-color: #4f46e5 !important;
    background-image: repeating-linear-gradient(
        45deg,
        #be185d,
        #be185d 10px,
        rgba(255, 255, 255, 0.12) 10px,
        rgba(255, 255, 255, 0.12) 20px
    ) !important;
}

body.whenride-dark .vis-item .vis-item-content {
    color: #ffffff !important;
}

@media (max-width: 767.98px) {
    body.whenride-dark {
        background: #0d131b !important;
    }

    body.whenride-dark .navBar1 {
        background: linear-gradient(120deg, #405b29, #1f5d59) !important;
        border-color: #2d3949 !important;
    }

    body.whenride-dark .aside-item,
    body.whenride-dark .sideItem {
        background: #111925 !important;
    }

    body.whenride-dark .vis-timeline {
        background: #0b1118 !important;
    }

    body.whenride-dark .vis-time-axis .vis-text {
        color: #c5d0df !important;
        font-size: 0.72rem !important;
    }

    body.whenride-dark .vis-labelset .vis-label .vis-inner {
        font-size: 0.74rem !important;
    }

    body.whenride-dark .rideTableItem.ride-status-normal {
        background-color: #151c26 !important;
        border-color: #2a3442 !important;
        color: #e7edf4 !important;
    }

    body.whenride-dark .rideTableItem.ride-status-normal,
    body.whenride-dark .rideTableItem.ride-status-normal * {
        color: #e7edf4 !important;
    }
}

button,
.btn,
[type="button"],
[type="submit"],
[type="reset"],
button:hover,
.btn:hover,
[type="button"]:hover,
[type="submit"]:hover,
[type="reset"]:hover,
button:focus,
.btn:focus,
[type="button"]:focus,
[type="submit"]:focus,
[type="reset"]:focus,
button:active,
.btn:active,
[type="button"]:active,
[type="submit"]:active,
[type="reset"]:active {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}
