@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
:root {
    --primaryColor: #FFD300;
    --whiteColor: #fff;
    --blackColor: #000;
    --greenishTeal: #00B69B;
    --lightRed: #FF6C6C;
    --lightGreen: #6FB290;
    --color-purple: var(--primaryColor);
    --color-red: #FF4600;
    --nunito-sense: "Nunito Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #EFF0F4;
    color: #565656;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

p,
figure,
label {
    margin: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

small {
    font-size: inherit;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

input,
button {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../milyas-images/select-input-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 15px) 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

::selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-webkit-selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-moz-selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

.text-primary {
    color: var(--primaryColor) !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.bg-included {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.absolute-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.flex-col-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gap-x-26 {
    row-gap: 26px;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--primaryColor);
    text-align: center;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}

.scrolltotop-modal {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--primaryColor);
    text-align: center;
    font-size: 22px;
    color: #ffffff;
    position: absolute;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1055;
    text-decoration: none;
}

.scrolltotop-modal i {
    color: var(--whiteColor);
}

.scrolltotop i {
    color: var(--whiteColor);
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--primaryColor);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*========= Login Page style =========== */

.loginMian-area {
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #FFF8DD;
    padding: 15px;
    gap: 28px;
}

.loginMian-area .loginFormWp {
    padding: 34px 31px;
    padding-top: 26px;
    border-radius: 6px;
    border: 1px solid #EAEAEA;
    background: #FFF;
    box-shadow: 0 4px 46px 0 rgba(0, 0, 0, 0.10);
    width: 100%;
    max-width: 424px;
}

.loginFormWp .branding {
    margin-top: 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loginFormWp .branding img {
    max-width: 166px;
}

.loginFormWp .branding p {
    color: #565656;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.loginFormWp form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
}

.loginFormWp form input {
    width: 100%;
    padding: 10px 18px;
    border-radius: 6px;
    border: 0.6px solid #D5D5D5;
    background: #F9F9FB;
    height: 60px;
    color: #565656;
}

.loginFormWp form input {
    padding: 10px 18px;
    border-radius: 6px;
    border: 0.6px solid #D5D5D5;
    background: #F9F9FB;
    height: 60px;
    width: 100%;
    color: #565656;
}

.loginFormWp form input:focus {
    border-color: var(--primaryColor);
}

.passwordInput {
    position: relative;
}

.passwordInput input {
    padding-right: 40px;
}

.passwordInput .togglePassword {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #565656;
}

.loginFormWp button {
    height: 60px;
    width: 100%;
    background: var(--primaryColor);
    border-radius: 6px;
    border: 0.6px solid #FFD300;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: 0.3s;
}

.loginFormWp button:hover {
    background: #FFF8DD;
}

.loginCopyrihgt {
    color: #565656;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/*========================
 Loign page Style end hare 
=========================== */

/*=====================
 Dashboard Page style 
====================== */

.header-area {
    padding-block: 17px;
    background: var(--primaryColor);
    /* width: 100vw; */
    margin: 0;
    padding-inline: 0;
    position: relative;
    z-index: 1000;
    left: 0;
    right: 0;
}

.header-area .container,
.header-area .container-fluid {
    max-width: 100%;
    padding-inline: 0;
    margin: 0;
    width: 100%;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
    position: relative;
    padding-inline: 20px;
}

.menuToggler {
    padding: 6px;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.userCard {
    display: flex;
    gap: 9px;
    align-items: center;
}

.userLogo {
    width: 36px;
    height: 36px;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.userLogo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.userInfo {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.userInfo .username {
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.userInfo .userEmail {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.menuWrapper {
    position: absolute;
    top: 120%;
    right: 0;
    z-index: 2000;
    margin-right: 20px;
    border-radius: 6px;
    border: 1px solid #EAEAEA;
    background: #FFF;
    box-shadow: 0 4px 46px 0 rgba(0, 0, 0, 0.05);
    padding: 8px;
    width: auto;
    min-width: 180px;
    display: none;
}

.menuWrapper li {
    padding: 10px 20px;
}

.menuWrapper ul {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.menuWrapper li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.menuWrapper li a span {
    flex: 1;
}

.menuWrapper li a:hover {
    color: var(--greenishTeal);
}

/*======== header area style end hare ========= */

.welcomeBanner-area {
    padding-top: 36px;
}

.welcomeBanner-wrapper {
    padding: 32px 26px;
    border-radius: 6px;
    border: 1px solid #EAEAEA;
    background: #FFF;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.welcomeBanner-wrapper h4 {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.welcomeBanner-wrapper h4 span {
    font-weight: 600;
}

.welcomeBanner-wrapper p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* welcome banner end hare  */

/* overview area  */

.overview-area {
    padding-top: 33px;
}

.overview-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.singleOverview {
    display: flex;
    align-items: center;
    padding: 25px 26px;
    border-radius: 6px;
    border: 1px solid #EAEAEA;
    background: #FFF;
    box-shadow: 0 4px 46px 0 rgba(0, 0, 0, 0.05);
}

.overviewInfo {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.overviewInfo p {
    color: #202224;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.7;
}

.overviewInfo h2 {
    color: #202224;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1px;
}

.overvew-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 23px;
}

.iconPurple {
    background: #DDDDFF;
}

.iconRed {
    background: #FCCCCC;
}

.iconYellow {
    background: #FAEAC5;
}

.iconOrange {
    background: #FFD8C9;
}

/* overview area end  */

/* operator area start  */

.operator-area {
    padding-top: 55px;
}

.operator-wrapper {
    display: flex;
    flex-direction: column;
    gap: 19px;
}
@media (max-width: 768px) {
    .operator-wrapper {
        padding-bottom: 15px;
    }
}
.operator-wrapper h4 {
    color: #202224;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.riderList {
    display: flex;
    align-items: start;
    gap: 26px;
}

.singleRiderItem {
    border-radius: 6px;
    border: 1px solid #EAEAEA;
    background: #FFF;
    box-shadow: 0 4px 46px 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.riderHeader {
    padding: 25px 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.riderHeader h4 {
    color: #202224;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.riderInfoCard {
    padding-inline: 23px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: var(--nunito-sense);
    max-height: 300px;
    overflow: hidden;
    overflow-y: auto;
    height: 300px;
    padding-bottom: 10px;
}

.riderLicence {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 0;
}

.rdLicenceLeft {
    flex: 1;
}

.rdLicenceLeft h5 {
    color: #404040;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 4px;
}

.rdLicenceLeft p {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.riderStatus {
    width: 75px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 6px;
    background: #00B69B;
}

.riderBasicInfo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.RiderBInfo {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.RiderBInfo h5 {
    color: #404040;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.RiderBInfo p {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.riderInfoCard {
    display: none;
}

.riderInfoCard.active {
    display: flex;
}

.riderHeader svg {
    transition: transform .3s ease;
}

.riderHeader.active svg {
    transform: rotate(180deg);
}

.singleRiderItem {
    flex: 1;
}

/* operator area end hare  */

.ContentSection {
    padding-top: 30px;
    padding-bottom: 35px;
    border-radius: 6px;
    border-top: 1px solid #EAEAEA;
}

.firstSection {
    margin-top: 50px;
}

.section-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sectionTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sectionTopLeft {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.sectionTopLeft .icon {
    width: 60px;
    height: 60px;
    border-radius: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sectionTopLeft h4 {
    color: #202224;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 6px;
}

.sectionTopLeft p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.sectionTopRight {
    display: flex;
    gap: 16px;
}

.totalReport {
    width: 112px;
    height: 60px;
    border-radius: 6px;
    border: 0.6px solid #ABA9FF;
    background: #E5E4FF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.filterWp {
    display: flex;
    border-radius: 6px;
    border: 0.6px solid #D5D5D5;
    background: #F9F9FB;
    height: 60px;
}

.filterWp h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-left: 26px;
    padding-right: 23px;
    border-right: 1px solid #D5D5D5;
}

.showPage {
    padding-inline: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #D5D5D5;
}

.showPage select {
    padding: 10px 20px;
    background-color: #F9F9FA;
    padding-right: 30px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #565656;
}

.selectOperators {
    padding-inline: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #D5D5D5;
}

.selectOperators select {
    padding: 10px 20px;
    background-color: #F9F9FA;
    padding-right: 30px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #565656;
}

.refresh {
    padding-inline: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.refresh button {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00B69B;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.sectionTable {
    width: 100%;
    border-radius: 6px;
    border: 0.6px solid #D5D5D5;
    background: #F9F9FB;
    border: 10px;
    overflow: hidden;
}

.sectionTable th,
.sectionTable td {
    padding-inline: 27px;
    text-wrap: nowrap;
}

.sectionTable th {
    height: 50px;
    background: #F9F9FA;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.sectionTable td {
    height: 60px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-top: 1px solid #D5D5D5;
    background: #FFF;
}

.operatorStatusTd {
    padding: 5px 10px;
    border-radius: 3px;
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: var(--greenishTeal);
    display: inline-block;
    text-transform: capitalize;
}

.operatorStatusTd.expired {
    background: #FF6C6C;
}

.operatorStatusTd.Pending {
    background: #FFB800;
}

.documentCountBadge {
    padding: 5px 10px;
    border-radius: 3px;
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: inline-block;
    text-align: center;
    min-width: 30px;
}

.documentCountBadge.pending {
    background: #FFB800;
}

.documentCountBadge.rejected {
    background: #FF6C6C;
}

.documentCountBadge.expiring {
    background: #FF9066;
}

.tableActions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tableActions button {
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tableActions button:hover {
    opacity: 0.7;
}

.tableActions button:focus {
    outline: none;
}

/* Remove Bootstrap button styles from table action buttons */
.tableActions .btn,
.tableActions .btn-sm,
.tableActions .btn-outline-primary,
.tableActions .btn-outline-info {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.flex-1 {
    flex: 1;
}

.iconBlue {
    background: #BDDDF6;
}

.emptyContent {
    border-radius: 6px;
    border: 0.6px solid #D5D5D5;
    background: #F9F9FB;
    min-height: 332px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.emptyContent h4 {
    color: #000;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 12px;
}

.emptyContent p {
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 6px;
}

.operatorStatusTd.Pending {
    background: var(--primaryColor);
}

.operatorStatusTd.Rejected {
    background: var(--lightRed);
}

.text-red {
    color: #FF0000;
}

.operatorStatusTd.expired {
    background: var(--lightRed);
}

/*================
 Documents Page 
=================== */

.documentHeaderWp {
    display: flex;
    align-items: center;
    gap: 10px;
}

.documentHeaderWp h4 {
    color: #000;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.personalInfo-area {
    padding-block: 20px;
}

.personalInfo-wrapper {
    padding: 20px 25px;
    border-radius: 6px;
    border: 1px solid #EAEAEA;
    background: #FFF;
    box-shadow: 0 4px 46px 0 rgba(0, 0, 0, 0.05);
}

.profile-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 260px;
}

.profile-image img {
    max-width: 260px;
    max-height: 260px;
    border-radius: 6px;
    object-fit: cover;
}

.profile-placeholder {
    width: 260px;
    height: 260px;
    background: #EFF0F4;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-placeholder i {
    font-size: 5rem;
    color: #565656;
}

.basicInfoCard {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.basicInfoContent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.personalInfo-wrapper .singleInfoItem {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.personalInfo-wrapper .singleInfoItem label {
    color: #404040;
    font-family: var(--nunito-sense);
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.personalInfo-wrapper .singleInfoItem input,
.personalInfo-wrapper .singleInfoItem textarea {
    color: #565656;
    font-family: var(--nunito-sense);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: none;
    resize: none;
    background: transparent;
    padding: 0;
}

.personalInfo-wrapper .singleInfoItem textarea:focus {
    outline: 0;
}

.ContactInfoCard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 20px;
    gap: 20px;
}

@media (max-width: 768px) {
    .basicInfoContent,
    .ContactInfoCard {
        grid-template-columns: 1fr;
    }
    .sectionTopLeft h4 {
        font-size: 18px !important;
    }
    
    .sectionTopLeft p {
        font-size: 12px !important;
    }
}

.documentDataArea {
    padding-top: 20px;
}

.documentDataArea .container {
    padding-left: 10px;
    padding-right: 10px;
}

@media (max-width: 768px) {
    .documentDataArea .container {
        padding-left: 5px;
        padding-right: 5px;
    }
}

.document-data-header {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.document-data-header::-webkit-scrollbar {
    display: none;
}

.singleDataStatus {
    border-radius: 3px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    text-wrap: nowrap;
}

.singleDataStatus p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.singleDataStatus p span {
    font-weight: 700;
}

.singleDataStatus svg {
    width: 24px;
    height: 24px;
}

.singleDataStatus.active {
    background: #FFF8DD;
    border-color: #FFD300;
}

.singleDataStatus:hover {
    background: #F5F5F5;
}

/* User Documents Modal Background */
#userDocumentsModal .modal-content {
    background: #EFF0F4;
    border: none;
}

#userDocumentsModal .modal-body {
    background: #EFF0F4;
    overflow-y: auto;
    /* max-height: calc(100vh - 80px); */
    position: relative;
}

#userDocumentsModal .modal-content {
    position: relative;
}

/* Mobile Responsive Styles for userDocumentsModal */
@media screen and (max-width: 767px) {
    #userDocumentsModal .documentHeaderWp h4 {
        font-size: 23px;
    }
    
    #userDocumentsModal .documentHeaderWp .icon svg {
        width: 24px;
        height: 24px;
    }
    
    #userDocumentsModal .singleDataStatus {
        padding: 15px;
        gap: 5px;
    }
    
    #userDocumentsModal .singleDataStatus svg {
        width: 16px;
        height: 16px;
    }
    
    #userDocumentsModal .singleDataStatus p {
        font-size: 12px;
    }
    
    #userDocumentsModal .document-data-header {
        gap: 11px;
    }
    
    #userDocumentsModal .DocDataHeader h2 {
        font-size: 20px;
        flex: 1;
        min-width: 0;
    }
    
    #userDocumentsModal .pandingData,
    #userDocumentsModal .approvedData,
    #userDocumentsModal .rejectedData {
        font-size: 12px;
        padding: 6px 8px;
    }
    
    #userDocumentsModal .dataDetails {
        flex-direction: column;
        align-items: start;
        gap: 15px;
    }
    
    #userDocumentsModal .singleDataInfo .icon svg {
        height: 16px;
        width: 16px;
    }
    
    #userDocumentsModal .singleDataInfo p {
        font-size: 14px;
    }
    
    #userDocumentsModal .dataTable th,
    #userDocumentsModal .dataTable td {
        font-size: 14px;
    }
    
    #userDocumentsModal .DocDataHeader {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        position: relative;
    }
    
    #userDocumentsModal .DocDataHeader h2 {
        width: 100%;
        padding-right: 100px;
    }
    
    #userDocumentsModal .DocDataHeader .docHeader-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    #userDocumentsModal .DocDataHeader .DataStatus {
        position: absolute;
        top: 20px;
        right: 15px;
        margin: 0;
    }
    
    #userDocumentsModal .DocDataHeader .docHeader-actions {
        width: 100%;
        margin-top: 0;
    }
    
    #userDocumentsModal .docDriverInfo {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
    
    #userDocumentsModal .documentFilecard h4 svg {
        width: 16px;
        height: 16px;
    }
    
    #userDocumentsModal .documentFilecard h4 {
        font-size: 16px;
    }
    
    #userDocumentsModal .documentImageCard img {
        max-width: 100px;
    }
    
    #userDocumentsModal .documentImageCard .fileName {
        font-size: 10px;
    }
    
    #userDocumentsModal .documentImageCard button {
        font-size: 10px;
    }
    
    #userDocumentsModal .docHeader-actions button svg {
        width: 16px;
        height: 16px;
    }
    
    #userDocumentsModal .docHeader-actions button {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    #userDocumentsModal .personalInfo-wrapper {
        padding: 17px 23px;
    }
    
    #userDocumentsModal .basicInfoCard {
        flex-direction: row-reverse;
    }
    
    #userDocumentsModal .basicInfoContent {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        flex: 1;
        gap: 15px;
    }
    
    #userDocumentsModal .profile-image img {
        max-width: 115px;
    }
    
    #userDocumentsModal .ContactInfoCard {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        padding-top: 10px;
        gap: 15px;
    }
    
    #userDocumentsModal .singleInfoItem label {
        font-size: 16px;
    }
    
    #userDocumentsModal .singleInfoItem input,
    #userDocumentsModal .singleInfoItem textarea {
        font-size: 14px;
        width: 100%;
    }
    
    #userDocumentsModal .documentDataArea .container {
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media screen and (max-width: 575px) {
    #userDocumentsModal .DocDataHeader {
        flex-direction: column;
        gap: 12px;
        padding: 15px 10px;
        position: relative;
    }
    
    #userDocumentsModal .DocDataHeader h2 {
        font-size: 18px;
        width: 100%;
        padding-right: 90px;
    }
    
    #userDocumentsModal .DocDataHeader .docHeader-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    #userDocumentsModal .DocDataHeader .DataStatus {
        position: absolute;
        top: 15px;
        right: 10px;
        padding: 5px 8px;
        font-size: 11px;
        margin: 0;
    }
    
    #userDocumentsModal .DocDataHeader .docHeader-actions {
        width: 100%;
        margin-top: 0;
        gap: 8px;
    }
    
    #userDocumentsModal .docHeader-actions button {
        flex: 1;
        padding: 10px 12px;
        font-size: 11px;
        justify-content: center;
    }
    
    #userDocumentsModal .docHeader-actions button svg {
        width: 14px;
        height: 14px;
    }
}

.documentDataList {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-block: 20px;
}

/* Document cards spacing is handled by documentDataList gap */
.singleDataItem {
    display: block;
}

.singleDataItem {
    border-radius: 6px;
    border: 1px solid #EAEAEA;
    background: #FFF;
}

.DocDataHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px;
    gap: 20px;
}

.DataStatus {
    display: inline-flex;
    padding: 8px 10px;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.pandingData {
    border-radius: 3px;
    border: 1px solid #FFAE00;
    background: #FFDD8D;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.approvedData {
    border-radius: 3px;
    border: 1px solid #6FB290;
    background: #D4F4E6;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.rejectedData {
    border-radius: 3px;
    border: 1px solid #FF6C6C;
    background: #FFE5E5;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.DocDataHeader h2 {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.dataDetails {
    padding-inline: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    flex-wrap: wrap;
}

.singleDataInfo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.singleDataInfo .icon svg {
    height: 24px;
    width: 24px;
}

.singleDataInfo p {
    color: #565656;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.singleDataInfo p span {
    color: #000;
    font-weight: 600;
}

.dataTable {
    width: 100%;
}

.dataTable th {
    padding-inline: 27px;
    height: 60px;
    border-bottom: 1px solid #D5D5D5;
    background: #FFF;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.dataTable th:first-child {
    width: 75%;
}

.dataTable td {
    padding-inline: 27px;
    height: 60px;
    border-bottom: 1px solid #D5D5D5;
    background: #FFF;
    color: #565656;
    font-size: 18px;
    font-style: normal;
    line-height: normal;
}

.dataTable tbody tr:last-child td {
    border-bottom: 0;
}

.dataTable-card {
    padding-inline: 15px;
    padding-bottom: 20px;
}

.docHeader-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.docHeader-actions {
    display: flex;
    gap: 20px;
}

.docHeader-actions button {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 3px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.docHeader-actions button svg {
    width: 24px;
    height: 24px;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Approve button hover - light green */
.docHeader-actions button[onclick*="approve"]:hover,
.docHeader-actions button[onclick*="approveCourse"]:hover,
.docHeader-actions button[onclick*="approveDocument"]:hover {
    background-color: #E8F5E9;
    border-color: #C8E6C9;
}

/* Reject button hover - light red */
.docHeader-actions button[onclick*="reject"]:hover,
.docHeader-actions button[onclick*="rejectCourse"]:hover,
.docHeader-actions button[onclick*="rejectDocument"]:hover {
    background-color: #FFEBEE;
    border-color: #FFCDD2;
}

.docDriverInfo {
    padding-inline: 15px;
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.docDriverInfo .singleInfoItem {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.docDriverInfo .singleInfoItem label {
    color: #404040;
    font-family: var(--nunito-sense);
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.docDriverInfo .singleInfoItem input,
.docDriverInfo .singleInfoItem textarea {
    color: #565656;
    font-family: var(--nunito-sense);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: none;
    background: transparent;
    padding: 0;
    width: 100%;
    resize: none;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.docDriverInfo .singleInfoItem textarea:focus {
    outline: 0;
}

.docSeparator {
    height: 1px;
    margin-block: 25px;
    background: #D5D5D5;
    margin-inline: 15px;
}

.documentFilecard {
    padding-inline: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
    align-items: start;
    padding-bottom: 28px;
}

.documentImagesContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.documentFilecard h4 {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.documentFilecard h4 svg {
    width: 24px;
    height: 24px;
}

.documentImageCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.documentImageCard img {
    max-width: 200px;
    border-radius: 3px;
    border: 1px solid #DEDEDE;
    aspect-ratio: 1/1;
    object-fit: cover;
    cursor: pointer;
}

.documentImageCard .fileName {
    text-align: center;
    max-width: 200px;
    width: 100%;
    color: #565656;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}

.documentImageCard button {
    color: #000;
    text-align: center;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 3px 7px;
    border-radius: 3px;
    background: #FFAE00;
    border: none;
    cursor: pointer;
}

/* Rejection Notes Section */
.rejectionNotesSection {
    padding: 20px 15px;
    border-top: 1px solid #EAEAEA;
    background: #FFF9F9;
}

.rejectionNotesHeader {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.rejectionNotesHeader .icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rejectionNotesHeader h4 {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.rejectionNoteItem {
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #FFE0E0;
    background: #FFF;
    margin-bottom: 15px;
}

.rejectionNoteItem:last-child {
    margin-bottom: 0;
}

.rejectionNoteHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.rejectionNoteHeader:hover {
    background-color: #FFF5F5;
}

.rejectionNoteHeader.active {
    background-color: #FFF5F5;
}

.rejectionToggleIcon {
    transition: transform 0.3s ease;
}

.rejectionNoteHeader.active .rejectionToggleIcon {
    transform: rotate(90deg);
}

.rejectionNoteContent {
    padding-top: 10px;
    padding-left: 26px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.rejectionCategory {
    color: #FF6C6C;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.rejectionDate {
    color: #565656;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.rejectionReason {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 8px;
}

.rejectionNote {
    color: #565656;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 8px;
}

/* Document Note Section - Compact design for driver photo and proof of address notes */
.documentNoteSection {
    padding: 12px 15px;
    background: #E3F2FD;
    border-left: 3px solid #2196F3;
    border-radius: 4px;
    margin-top: 15px;
    margin-left: 15px;
    margin-right: 15px;
}

.documentNoteContent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.documentNoteContent svg {
    margin-top: 2px;
}

.documentNoteContent span {
    color: #1565C0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    flex: 1;
}

/* footer style  */

.footer-area {
    padding-block: 22px;
    border-bottom: 1px solid #EAEAEA;
    background: #000;
}

.footer-wrapper p {
    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}