﻿.cursor-pointer {
    cursor: pointer;
}

.drag--on-border {
    border: dotted 6px var(--grey-6) !important;
    background-color: var(--grey-2) !important;
    color: var(--grey-6) !important;
}

.image-size {
    aspect-ratio: 3/2;
    object-fit: contain;
}

.icon--success {
    background: var(--success);
    border-radius: 50%;
    color: white;
    font-size: 12px;
    padding: 6px;
}

.text-underline {
    text-decoration: underline;
}

.pointer-event-none {
    pointer-events: none !important;
}

/* no data found */
.nofound {
    font-weight: bold;
    display: block;
    text-align: center;
    margin-block: 48px;
    margin-block: 3rem;
    color: #B0BFB8;
    font-size: 30px;
    line-height: normal;
}

.text-normal {
    font-weight: normal !important;
}

.text-bold {
    font-weight: bold !important;
}

.text-no-wrap {
    text-wrap: nowrap !important;
}

.impersonation-section {
    border: 3px solid var(--success);
    margin-top: -10px;
    border-radius: 8px !important;
    box-shadow: 0px 4px 4px 0px #D2D4E1 !important;
    position: fixed;
    bottom: 10px;
    border-radius: 5px;
    background: var(--white);
    width: 100%;
    justify-content: space-between;
    padding: 8px 16px !important;
    right: 10px;
    left: 10px;
}

.header-user-info {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    margin-left: 7px;
}

.header-user-info-role {
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    margin-top: -3px;
}

.seat-item {
    position: relative;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-width: 1px;
    border-style: solid;
    border-radius: 8px;
    border-color: #0466C1;
    /*background-color: rgb(242, 248, 253);*/
    padding: 30px;
    cursor: pointer;
}

.seat-container .seat-item .available {
    width: 100px;
    background: var(--grey-3);
    padding: 16px;
    border-radius: 4px;
    cursor: pointer;
}

.unavailable-seat {
    position: relative;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-width: 1px;
    border-style: solid;
    border-radius: 8px;
    border-color: rgb(205, 209, 212);
    background-color: rgb(230, 232, 233);
    cursor: no-drop;
}

.seat-item.empty-space {
    position: relative;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-width: 1px;
    border-style: solid;
    border-radius: 8px;
    border-color: rgb(205, 209, 212);
    background-color: rgb(230, 232, 233);
    cursor: no-drop;
}

.seat-item.available.p-left {
    margin-left: 20px;
}

.seat-item.available.p-right {
    margin-right: 20px;
}

input:checked + .seat-item {
    color: white;
    background: #0466C1;
}


.fare-rules-button {
    border-radius: 50% !important;
    color: #ffffff;
    background: #1BD2C9;
}

.modal__body {
    min-height: auto !important;
    overflow: auto !important;
}

.row-number {
    background-color: transparent !important;
    border-width: 0px !important;
}

.header-item {
    background-color: transparent !important;
    border-width: 0px !important;
}
/*
.extra-box {
    background-color: transparent !important;
    border-width: 0px !important;
}*/

.disabled-date {
    color: #ccc;
    pointer-events: none; /* Prevent click events */
    cursor: not-allowed;
}

.pb-8-px {
    padding-bottom: 8px;
}