.lid-simple-shell {
    min-height: 70vh;
}

.lid-simple-shell .cmmn-hdr p {
    margin-top: 10px;
    color: #606060;
}

.lid-simple-login {
    align-items: center;
    display: flex;
    justify-content: center;
}

.lid-simple-login-card {
    max-width: 600px;
    width: 100%;
}

.lid-simple-topbar {
    align-items: center;
    background: var(--color-primary);
    border-radius: 14px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    margin: 0 auto 24px;
    max-width: 1392px;
    padding: 18px 22px;
}

.lid-simple-brand {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    text-decoration: none;
}

.lid-simple-layout {
    display: grid;
    gap: 22px;
    grid-template-columns: 260px minmax(0, 1fr);
    margin: 0 auto;
    max-width: 1392px;
}

.lid-simple-nav {
    overflow: hidden;
    border: 1px solid var(--color-primary);
    background: #fff;
    border-radius: 14px;
    display: grid;
    gap: 0;
    padding: 0;
    height: max-content;
}

.lid-simple-nav a {
    color: var(--color-black);
    font-size: 18px;
    font-weight: 600;
    padding: 16px;
    text-decoration: none;
    border-bottom: 1px solid var(--color-primary);
}

.lid-simple-nav a:last-child {
    border-bottom: 0;
}

.lid-simple-nav a.is-active,
.lid-simple-nav a:hover {
    background: var(--color-primary);
    color: #fff;
}

.lid-simple-panel,
.lid-simple-card {
    background: #fff;
    border: 1px solid var(--color-primary);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
    padding: 30px;
}

.lid-simple-card {
    background: rgba(243, 217, 156, 0.3);
}

.lid-simple-panel h1 {
    color: var(--color-black);
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 20px;
}

.lid-simple-card strong {
    color: var(--color-primary);
    display: block;
    font-size: 20px;
}

.lid-simple-card span {
    color: #667085;
    display: block;
    font-size: 16px;
    margin-top: 8px;
}

.lid-simple-cards {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lid-simple-table-wrap {
    overflow: auto;
}

.lid-simple-table {
    border-collapse: separate;
    border-spacing: 0 12px;
    width: 100%;
}

.lid-simple-table th {
    color: #667085;
    font-size: 14px;
    padding: 0 16px;
    text-align: left;
    text-transform: uppercase;
}

.lid-simple-table td {
    font-size: 14px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    border-top: 1px solid #e5e7eb;
    padding: 16px;
    vertical-align: top;
}

.lid-simple-table td .lid-simple-button {
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 12px;
    min-width: 100px;
}

.lid-simple-table td:first-child {
    border-left: 1px solid #e5e7eb;
    border-radius: 12px 0 0 12px;
}

.lid-simple-table td:last-child {
    border-right: 1px solid #e5e7eb;
    border-radius: 0 12px 12px 0;
}

.lid-simple-table span,
.lid-simple-table strong {
    display: block;
}

.lid-simple-pill {
    background: var(--color-secondary);
    border-radius: 999px;
    color: var(--color-black);
    font-weight: 500;
    padding: 8px 12px;
    width: max-content;
    margin-bottom: 10px;
}

.lid-simple-button,
.lid-simple-login input[type=submit] {
    border-radius: 16px;
    padding: 17px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    gap: 8px;
    border: 1px solid transparent;
    line-height: 0.8;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    background: var(--color-primary);
    color: var(--color-white);
}

.lid-simple-button:hover,
.lid-simple-login input[type=submit]:hover {
    color: var(--color-black);
    border-color: var(--color-3);
    background: var(--color-secondary);
}

.lid-simple-button-light {
    background: #eef2f6;
    color: var(--color-primary);
}

.lid-simple-form,
.lid-simple-inline-form {
    display: grid;
    gap: 10px;
}

.lid-simple-inline-form {
    min-width: 180px;
}

.lid-simple-form input,
.lid-simple-form select,
.lid-simple-inline-form input,
.lid-simple-inline-form select,
.lid-simple-login input[type=text],
.lid-simple-login input[type=password] {
    width: 100%;
}
.lid-simple-table .lid-simple-form input,
.lid-simple-table .lid-simple-form select,
.lid-simple-table .lid-simple-inline-form input,
.lid-simple-table .lid-simple-inline-form select,
.lid-simple-table .lid-simple-login input[type=text],
.lid-simple-table .lid-simple-login input[type=password] {
    height: 40px;
    border-radius: 8px;
    background: rgba(96, 96, 96, 0.1);
    border: 1px solid rgba(96, 96, 96, 0.2);
    padding: 5px 16px;
    color: var(--color-black);
    font-size: 14px;
    font-weight: 400;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  box-shadow: none;
}
.lid-simple-two-col {
    display: grid;
    gap: 20px;
    grid-template-columns: 360px minmax(0, 1fr);
}

.lid-simple-list-item {
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 14px 0;
}

.lid-simple-icon-button {
    align-items: center;
    background: #fee4e2;
    border: 0;
    border-radius: 999px;
    color: #b42318;
    cursor: pointer;
    display: inline-flex;
    font-size: 28px;
    font-weight: 800;
    height: 42px;
    justify-content: center;
    line-height: 1;
    width: 42px;
}

.lid-simple-notice {
    background: #ecfdf3;
    border: 1px solid #abefc6;
    border-radius: 12px;
    color: #067647;
    font-weight: 800;
    margin-bottom: 18px;
    padding: 14px 16px;
}

.lid-simple-pagination {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 18px;
}

.lid-simple-pagination a,
.lid-simple-pagination span {
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    color: var(--color-primary);
    font-weight: 800;
    min-width: 44px;
    padding: 10px 14px;
    text-align: center;
    text-decoration: none;
}

.lid-simple-pagination .is-active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}
.table-middle tr td {
    vertical-align: middle;
}
.lid-simple-shell.common-gap {
    padding-left: 12px;
    padding-right: 12px;
}
.filter-color {
    filter: invert(65%) sepia(39%) saturate(853%) hue-rotate(10deg) brightness(95%) contrast(92%);
}
.avtar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #7A5513;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.avtar-img img {
    filter: invert(25%) sepia(39%) saturate(853%) hue-rotate(10deg) brightness(95%) contrast(92%);
}
.avtar-text {
    display: flex;
    align-items: center;
    gap: 5px;
}
.lid-simple-shell .lid-simple-brand {
    color: var(--color-white)!important;
}

@media (max-width: 1199px) {
.lid-simple-card strong {
  font-size: 17px;
}
.lid-simple-icon-button {
  font-size: 22px;
  height: 30px;
  width: 30px;
}
.lid-simple-panel, .lid-simple-card {
  padding: 20px;
}
}
@media (max-width: 960px) {

    .lid-simple-layout,
    .lid-simple-two-col,
    .lid-simple-cards {
        grid-template-columns: 1fr;
    }

    .lid-simple-shell {
        padding: 120px 14px 40px;
    }

    .lid-simple-topbar {
        align-items: flex-start;
        gap: 12px;
        flex-direction: column;
    }
 

}
@media (min-width: 768px) and (max-width: 960px) {
   .lid-simple-panel {
        overflow-x: auto;
    }
}
@media (max-width: 767px) {
    .lid-simple-panel, .lid-simple-card {
        padding: 15px;
    }
    .lid-simple-brand {
  font-size: 20px;
    }
    .lid-simple-button, .lid-simple-login input[type="submit"] {
  border-radius: 12px;
  padding: 14px 20px;
    }
    .lid-simple-nav a {
  font-size: 16px;
    }
    .lid-simple-panel h1 {
  font-size: 22px;
    }
.lid-simple-topbar {
    align-items: center;
}
.lid-simple-table-wrap {
        overflow: visible;
    }

    .lid-simple-table,
    .lid-simple-table tbody,
    .lid-simple-table tr,
    .lid-simple-table td {
        display: block;
        width: 100%;
        text-align: right;
    }

    /* Hide table heading */
    .lid-simple-table thead {
        display: none;
    }

    /* Booking Card */
    .lid-simple-table tr {
        margin-bottom: 20px;
        padding: 16px;
        border: 1px solid #E5E7EB;
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 8px 24px rgba(15,23,42,.06);
    }

    .lid-simple-table td {
        padding: 14px 0;
        border: 0;
        border-bottom: 1px solid #F1F5F9;
        background: transparent;
        border-radius: 0 !important;
        position: relative;
        padding-left: 100px;
    }

    .lid-simple-table td:last-child {
        border-bottom: none;
    }

    /* Labels */
    .lid-simple-table td::before {
        flex: 0 0 110px;
        font-size: 12px;
        font-weight: 700;
        color: #64748B;
        text-transform: uppercase;
        letter-spacing: .5px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
    }
    .lid-booking-table td:nth-child(1):before,.lid-booking-history-table td:nth-child(1):before {
        content: 'Ride';
    }
    .lid-booking-table td:nth-child(2):before,.lid-booking-history-table td:nth-child(2):before {
        content: 'Customer';
    }
    .lid-booking-table td:nth-child(3):before,.lid-payment-table td:nth-child(4):before,.lid-booking-history-table td:nth-child(3):before {
        content: 'Status';
    }
    .lid-booking-table td:nth-child(4):before {
        content: 'Driver / Fare';
    }
    .lid-booking-table td:nth-child(5):before ,.lid-payment-table td:nth-child(1):before,.lid-booking-history-table td:nth-child(4):before{
        content: 'Payment';
    }
    .lid-simple-table td>* {
        flex: 1;
        text-align: right;
    }
    .lid-payment-table td:nth-child(2):before {
        content: 'Booking';
    }
    .lid-payment-table td:nth-child(3):before {
        content: 'Amount';
    }
    .lid-payment-table td:nth-child(5):before {
        content: 'Link';
    }
    .lid-simple-table span,
    .lid-simple-table strong {
        display: block;
        margin-bottom: 4px;
        word-break: break-word;
    }

    .lid-simple-table td:first-child {
  border-left: 0;
    }
    .lid-simple-table td:last-child {
  border-right: 0;
    }
.lid-simple-pill {
  margin-left: auto;
}
.lid-simple-pagination {
    justify-content: center;
}
.lid-simple-card span {
  word-break: break-all;
}
.avtar-text-wrapper {
    justify-content: space-between;
    width: 100%;
}
}
@media (max-width: 360px) {
    .lid-simple-inline-form {
  min-width: 120px;
}
}
.lid-car-admin-item {
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.lid-car-admin-item img {
    border-radius: 8px;
    height: 72px;
    object-fit: cover;
    width: 112px;
}

.lid-car-admin-edit {
    border-bottom: 1px solid rgba(117, 81, 15, 0.25);
    margin-bottom: 22px;
    padding-bottom: 22px;
}

.lid-car-admin-edit:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.lid-car-admin-form textarea {
    background: rgba(96, 96, 96, 0.1);
    border: 1px solid rgba(96, 96, 96, 0.2);
    border-radius: 8px;
    padding: 10px 12px;
    resize: vertical;
    width: 100%;
}

.lid-simple-check {
    align-items: center;
    display: flex;
    gap: 8px;
}

.lid-simple-check input {
    width: auto;
}

.lid-simple-button-danger {
    background: #b42318;
    border-color: #b42318;
    color: #fff;
}

.lid-simple-button-danger:hover {
    background: #fee4e2;
    border-color: #b42318;
    color: #b42318;
}

@media (max-width: 767px) {
    .lid-car-admin-item {
        align-items: flex-start;
    }

    .lid-car-admin-item img {
        height: 58px;
        width: 86px;
    }
}
.lid-simple-field {
    display: grid;
    gap: 6px;
}

.lid-simple-field span {
    color: var(--color-black);
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.lid-simple-field small {
    color: #667085;
    font-size: 13px;
    line-height: 1.4;
}