@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Roboto+Condensed:wght@300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Architects+Daughter&family=Kalam:wght@300;400&family=Questrial:wght@900&family=Sacramento&family=Secular+One&family=Tangerine:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat&family=Julius+Sans+One&family=Raleway:wght@200;300;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@500&family=Noto+Sans+Tamil:wght@500&family=Questrial&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Encode+Sans:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;600;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --font-family: "Open Sans", sans-serif;
    --font-size: 28px;
    /* --p: #7C3AED; */
    --p: red !important;
    --color-1: #8e44ad;
    --color-2: #d6eaf8;
    --color-3: #c2e7ff;
    --color-4: #8e44ad;
    --color-5: #FFFFFF;
    --color-6: #444746;
    --color-7: #1f1f1f;
    --color-8: #c70039;
    --xgreen: #98ca82;
    --xbtn: #2a5173;
}

.w-60 {
    width: 60%;
    margin-left: 20% !important;
}

.w-70 {
    width: 70%;
    margin-left: 15% !important;
}

body,
html {
    padding: 0;
    margin: 0;
    font-family: 'Roboto', 'Open sans';
    font-size: 14px;
    overflow-x: hidden;
    overflow-y: hidden;
    height: 100vh;
    background-color: #EDEFF7;
}

.grid-2 {
    @apply grid grid-cols-2;
}

.span-2 {
    @apply col-span-2;
}

.drawer-open .drawer-content {
    margin-left: 0 !important;
}


.pill {
    min-width: 100px;
    border-radius: 20px !important;
    font-size: 14px;
}

.btn-primary {
    background-color: #7C3AED;
    color: #fff;
}

.btn {
     font-size: 14px;
}

input,
textarea,
select {
    border: 1px solid #a5a5a5 !important;
    font-size: 14px;
    height: 28px;
    padding: 2px 10px;
}

.font-14 {
    font-size: 14px;
}

.font-bold-14 {
    font-size: 14px;
    font-family: "Open sans";
    font-weight: bold;
}

.font-500 {
    font-size: 14px;
    font-family: "Open sans";
    font-weight: 500;
}

.font-700 {
    font-size: 14px;
    font-family: "Open sans";
    font-weight: 700;
}

input:focus,
input:focus-visible,
textarea:focus,
textarea:focus-visible,
select:focus,
select:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid black !important;
    ring: 0 !important;
}

.sans {
    font-size: 14px;
    font-family: "Open sans";
}

.sans-bold {
    font-size: 14px;
    font-family: "Open sans";
    font-weight: bold;
}

.sans-error {
    font-size: 14px;
    font-family: "Open sans";
    font-weight: 600;
}

.container-full {
    margin: 15px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 2px 2px 9px #a5a5a5;
    border-radius: 6px;
    height: calc(100vh - 75px);
    display: flex;
    flex-direction: column;
}


.modal-footer {
    background-color: #e5e5e5;
    align-items: center;
    padding: 12px !important;
}

.scroll-panel {
    overflow: auto !important;
    max-height: 100% !important;
}

.xpedio {
    color: #c70039;
}

.panel-80 {
    margin: 15px;
    height: calc(100vh - 75px);
    width: 80%;
    margin-left: 10%;
    background-color: #fff;
    box-shadow: 2px 2px 9px #a5a5a5;
    border-radius: 6px;
    padding: 20px;
}

 table {
     width: 100%;
     border-collapse: collapse;
     border: 1px solid #ccc;
 }

 thead {
     position: sticky;
     top: 0;
     background: #e0e0e0;
     /* Ensure header visibility */
     z-index: 2;
     /* Keeps it above the scrolling rows */
 }

td {
    font-size: 14px;
    font-family: "Roboto";
    border: 1px solid #c5c5c5;
}

th {
    background-color: #c2e7ff;
    font-size: 14px;
    font-family: "Open sans";
    font-weight: 600;
    border: 1px solid #c5c5c5;
}

tbody tr:hover, tbody label:hover{
    background: #d5d5d5;
    cursor: pointer;
    /* Optional: Hover effect */
}

tbody tr {
    /* border: 1px solid #fff; */
    border-bottom-color: #ccc;
}

.status-alert {
    position: absolute;
    bottom: 0;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #555;
    /* opacity: 0.8; */
    border-radius: 20px;
    padding: 7px 35px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-family: "Open sans";
    min-width: 40%;
}