@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

html {
    font-size: 100%;
}

@media screen and (max-width: 1200px) {
    html {
        font-size: 90%;
    }

}

@media screen and (max-width: 768px) {
    html {
        font-size: 80%;
    }

}



body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    /* width: 1884px; */
    max-width: 100%;
    /* display: flex; */
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: 0;
    margin-left: 0;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    font-family: 'Poppins', sans-serif !important;
    color: #444444 !important;
    font-weight: 400;
}

.sidebar {
    width: 270px;
    height: 100vh;
    background-color: #222;
    position: fixed;
    top: 0;
    left: 0;
    transition: width 0.3s ease-in-out;
    overflow: hidden;
    white-space: nowrap;
}

.scrollable-sidebar {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #1e4d2b #222;
}

.scrollable-sidebar::-webkit-scrollbar {
    width: 8px;
}

.scrollable-sidebar::-webkit-scrollbar-track {
    background: #222;
    border-radius: 10px;
}

.scrollable-sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #1e4d2b, #2a6b3d);
    border-radius: 10px;
    border: 2px solid #222;
}

.scrollable-sidebar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #2a6b3d, #36794d);
}

.scrollable-sidebar::-webkit-scrollbar-button {
    display: none;
}

.sidebar.minimized {
    width: 60px;
}

.logo {
    text-align: left;
    padding: 15px 15px;
}

.logo img {
    width: 170px;
    height: auto;
    margin: 0 auto;
    transition: width 0.3s ease-in-out;
}

.sidebar.minimized .logo img {
    width: 40px;
}


.sidebar ul {
    list-style: none;
    padding: 0;
    margin-top: 8px;
}

.sidebar ul li {
    padding: 5px;
    text-align: left;
    transition: all 0.3s ease-in-out;
}

.sidebar ul li a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0px;
    font-size: 14px;
    transition: opacity 0.3s ease-in-out;
}


.sidebar ul li a i {
    font-size: 20px;
}


.sidebar.minimized ul li a span {
    display: none;
}



ul li a img {
    margin-right: 10px;
}

.tab-link {
    text-decoration: none;
    color: #000;
    padding: 10px;
}

.tab-link.active {
    background-color: #2C4291;
    color: #fff;
    border-radius: 5px;
}

.btn-visa-bg {
    background: #2C4291;
    border: none;
}

.btn-visa-orange {
    background: #F2841A;
    border: none;
    color: #fff;
}


.tab-link:hover {
    border-radius: 5px;
    background-color: #F2841A;
}

.logout-btn {
    background-color: #353535;
    color: white;
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

.logout-btn:hover {
    background-color: #F2841A;
}

.logout-btn img {
    margin-right: 10px;
}

.btn-card-color {
    background: #F0F2F5;
    border: none;
}

.visa-btn {
    background: #efefef;
    border-radius: 20px;
}

.btn-card-color:hover {
    background: #F0F2F5;
    border: none;
}

.btn-primary:hover,
.btn-primary:focus {
    color: #fff;
    background-color: #21266e;
    border-color: #21266e;
}


.main-content {
    min-height: 100vh;
    margin-left: 270px;
    transition: margin-left 0.3s ease-in-out;
    /* width: calc(100% - 250px); */
    background: #f4f4f4;
    display: flex;
    flex-direction: column;
}

.main-content.expanded {
    margin-left: 60px;
    width: calc(100% - 60px);
}

.visa-card {
    box-shadow: -1px 1px 4px 3px #e2e2e2;
    border: none;
}

.visa-card:hover {
    background: #ffffff;
}

.navbar {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dadada;
    justify-content: space-between;
    background: #fff;
    padding: 15px;
}

.toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.user-options {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-options select {
    padding: 5px;
}

.user-icon {
    font-size: 20px;
}


.card-group {
    display: flex;
    gap: 20px;
}

.card {
    flex: 1;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    color: rgb(10, 10, 10);
}

.blue {
    background: #007bff;
}

.purple {
    background: #6f42c1;
}


.chart-section {
    margin-top: 30px;
}

.chart-placeholder {
    width: 100%;
    height: 250px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: gray;
}

footer {
    text-align: center;
    padding: 10px;
    background: #f8f9fa;
    border-top: 1px solid #ddd;
}

.fw-normal-dashboard {
    font-weight: 500;
}

.more-info:hover {
    color: #fff;
}


.visa-card:hover .btn-visa-bg {
    background-color: #2C4291;
    transition: background-color 0.3s ease;
    color: white;
}

.visa-gtoken {
    vertical-align: middle;
}

.hug-zoom {
    width: 40px;
}

.percentage {
    float: right;
}

.circle-container {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.percentage-border {
    border-bottom: 1px dashed #dbdbdb;
    padding: 10px 0px 10px 0px;
}

.circle-container {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.ring-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 325px;
    height: 325px;
    border-radius: 50%;
    border: 12px solid #2C4291;
    transform: translate(-50%, -50%);
}

.ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 285px;
    height: 285px;
    border-radius: 50%;
    border: 12px solid #16C076;
    transform: translate(-50%, -50%);
}

.ring-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 12px solid #F2841A;
    transform: translate(-50%, -50%);
}

.circle-number {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 40px;
    font-weight: 500;
    color: black;
    transform: translate(-50%, -50%);
}

.blue-text {
    color: #2C4291 !important;
}

.red-text {
    color: #16c076 !important;
}

.orange-text {
    color: #f2841a !important;
}

.value-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    color: #000;
    font-weight: bold;
}

.label-text {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: #888;

}

.chart-container {
    position: relative;
    display: inline-block;
    width: 450px;
    margin-top: -70px;
    text-align: center;
}

.country-list {
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
}

.country-list ul {
    list--type: disc;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.app-graph {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
}

.visa-align {
    margin-top: -95px;
}

.progress-wrapper {
    margin-bottom: 20px;
}

.progress-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.progress-bar {
    height: 7px;
}

.progress {
    display: flex;
    height: 7px;
    overflow: hidden;
    font-size: .75rem;
    background-color: #363b90;
    border-radius: .25rem;
}

#map {
    height: 40vh;
    width: 100%;
}

.leaflet-tooltip {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    border-radius: 5px;
}

/* Custom marker icon size */
.leaflet-div-icon {
    font-size: 18px;
}

.map-container {
    position: relative;
    width: 98%;
    max-width: 980px;
    height: 375px;
}

.map {
    width: 100%;
    height: 93%;
}

.point {
    position: absolute;
    width: 36px;
    height: 36px;
    background: radial-gradient(circle, #e36a07 40%, #363b90de 50%, #363b90b5 50%);
    border-radius: 800px;
    opacity: 85%;
}

.info-card {
    position: absolute;
    right: 20%;
    bottom: 21%;
    background: #E4EAFF;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.info-card .circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 5px solid #2C4291;
    border-top-color: #da8b29;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}

.user-country {
    border-right: 2px solid #e3e3e3;
    padding: 15px;
    height: 397px;
    margin-top: -20px;
}

.visa-badge {
    display: inline-block;
    padding: 10px 10px 10px 10px;
    font-size: .75em;
    font-weight: 700;
    line-height: 1;
    background: #000000;
    color: #f5f5f5;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 49px;
}

.tab-badge {
    font-size: 14px;
    background: #000000;
    border-radius: 25px;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.step {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.step span {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    margin-right: 10px;
}

.active .tab-highlight {
    background-color: #F2841A;
    border-bottom: 2px solid #F2841A;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #F2841A;
    background-color: #f4f4f400;
    border-color: #f4f4f400 #f4f4f400 #fff;
    border-bottom: 3px solid #F2841A;
}

.tab-color {
    color: #000000;
}

.e-visa-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background: #f8f9fa;
}

.visa-header {
    font-weight: bold;
    background: #E4EAFF;

}

.visa-price {
    float: right;
    color: #2C4291;
    font-weight: bold;
}

.more-info {
    margin-top: 10px;
    display: block;
    text-decoration: none;
    color: white;
    background: #2C4291;
    padding: 8px;
    border-radius: 5px;
    text-align: center;
}

.business-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 15px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.business-card:hover {
    background-color: #E4EAFF;
    transition: background-color 0.3s ease;
}



.business-card img {
    width: 30px;
    height: 30px;
}

.business-card .info {
    flex-grow: 1;
    margin-left: 10px;
}

.business-card .check {
    font-size: 15px;
    color: #858585;
}

.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 25px;
    border: 1px solid #9e9e9e;
    border-radius: 50%;
    text-align: center;
}

.document-png {
    border: 1px solid #d5d5d5;
    padding: 5px;
    border-radius: 5px;
}

#popupContainer {
    transition: transform 0.8s ease;
    transform: translateX(100%);
}

#popupContainer.show {
    transform: translateX(0);
}

.upload-box {
    border: 1px solid #e5e5e5;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.custom-search {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background-color: white;
    background-image: url('../../images/search.png');
    background-size: 16px 16px;
    background-position: 10px 10px;
    background-repeat: no-repeat;
    padding: 8px 15px 7px 35px;
}

.custom-email {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background-color: white;
    background-image: url('../../images/user.png');
    background-size: 16px 16px;
    background-position: 10px 12px;
    background-repeat: no-repeat;
    padding: 8px 15px 7px 35px;
}

.custom-password {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background-color: white;
    background-image: url('../../images/password.png');
    background-size: 16px 16px;
    background-position: 10px 12px;
    background-repeat: no-repeat;
    padding: 8px 15px 7px 35px;
}

.file-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 items per row */
    gap: 10px;
    /* Spacing between items */
    max-width: 400px;
    /* Adjust as needed */
    margin: auto;
}

.file-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.file-item img {
    width: 50px;
    /* Adjust size as needed */
    height: 50px;
}

.status-icon {
    font-size: 20px;
    margin-top: 5px;
}

.btn-organize {
    margin-top: 20px;
    background-color: #3b3bbf;
    color: white;
}

.visa-card:hover {
    background: #E4EAFF;
}

.check-mark {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: #fff;
    background: #018433;
    border: none;
}

.check-mark-cross {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: #fff;
    background: #e20000;
    border: none;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: #2C4291;
    border-radius: 25px;

}

.nav-pills .nav-link {
    background: #ffffff;
    border: 1px solid #dfdfdf;
    border-radius: 25px;
    color: #121212;
    margin-left: 12px;
}

.action-btn {
    background: #858585;
    border: 1px solid #858585;
}

.copy-data {
    border: 1px solid #ededed;
    padding: 5px;
    background: #ededed;
    border-radius: 5px;
}

.applicant-card {
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    max-width: 650px;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.applicant-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.gdrfa-bar {
    height: 8px;
    background-color: #3f51b5;
    border-radius: 10px;
    width: 100%;
}

.more-info-btn {
    background-color: #3f51b5;
    color: white;
    border-radius: 5px;
    padding: 6px 12px;
    border: none;
}

.icon-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #3f51b5;
    margin-left: 10px;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    appearance: none;
    background-color: #ffffff;
    border: 1px solid #c8c8c8;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    position: relative;
}

/* input[type="checkbox"]:checked::before {
    content: "\2713";
    font-size: 16px;
    font-weight: bold;
    color: rgb(19, 19, 19);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */

#flexSwitchCheckChecked::before {
    content: "" !important;
    font-size: 16px;
    font-weight: bold;
    color: rgb(19, 19, 19);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-check .form-check-inputmark {
    float: left;
    margin-left: -1.5em;
}

.form-check-label {
    margin-left: 8px;
    vertical-align: middle;
}

.table>:not(caption)>*>* {
    padding: 15px;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.btn-action {
    background: #dcdcdc;
    padding: 7px;
    border: #b5b5b5;
}

.btn-action:hover {
    background: #dcdcdc;
    padding: 7px;
}

.upload-bg {
    background-color: #ebebeb00;
}

.btn-close:focus {
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, .25);
    opacity: 1;
}

.profile-icons {
    border: 1px solid #a1afe1;
    padding: 8px;
    border-radius: 5px;
}

.profile-icons2 {
    border: 1px solid #8bc9ad;
    padding: 8px;
    border-radius: 5px;
}

.profile-icons3 {
    border: 1px solid #e6a7b6;
    padding: 8px;
    border-radius: 5px;
}

.visa-process-card {
    background: #E4EAFF;
    border: 1px solid #a2aed9;
}

.visa-process-card {
    background: #E4EAFF;
    border: 1px solid #a2aed9;
}

.visa-completed-card {
    background: #E7FFF4;
    border: 1px solid #7dc296;
}

.visa-rejected-card {
    background: #FFEEF1;
    border: 1px solid #efa3b5;
}

.btn-edit {
    background: #e6e9ff;
    border: 1px solid #a7abc7;
    color: #565c8d;
    border-radius: 1.5rem;
}

.btn-remove {
    background: #ffdee6;
    border: 1px solid #FF1F43;
    color: #FF1F43;
    border-radius: 1.5rem;
}

.btn-edit:hover {
    background: #e6e9ff;
    border: 1px solid #a7abc7;
    color: #565c8d;
    border-radius: 1.5rem;
}

.btn-remove:hover {
    background: #ffdee6;
    border: 1px solid #cb9faa;
    color: #985f6c;
    border-radius: 1.5rem;
}

.nav-list .nav-space {
    background: #f4f4f400;
    border: 1px solid #f4f4f400;
    border-radius: 25px;
    color: #121212;
    padding-bottom: 20px;
    margin-left: 12px;
    /* border-bottom: 2px solid #c9c9c9; */
}

.vertical-tabs .nav-pills .nav-link.active,
.vertical-tabs .nav-pills .show>.nav-link {
    color: #20365d;
    background-color: #f4f4f4;
    border-radius: 25px;
    font-weight: 600;
}

.profile-upload {
    padding: 8px;
    border-radius: 50px;
}

.tab-border {
    border-left: 1px solid #cccccc;
    padding-left: 20px;
}


.addoffer {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
}

.opensidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: #333;
    color: white;
    transition: transform 0.4s ease-in-out;
    transform: translateX(100%);
    padding: 20px;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.3);
}


.opensidebar.active {
    transform: translateX(0);
}


.close-sidebar {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.nav-link active {
    display: block;
    padding: .5rem 1rem;
    color: #0f0f0f;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
    border-bottom: 2px solid #f89419 !important;
}

.border-box {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 15px;
    background-color: #f9f9f9;
}

.img-placeholder {
    border: 1px solid #e0e0e0;
    background-color: #f2f2f2;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
}

.img-placeholder img {
    width: 50px;
    height: 50px;
}

.form-label {
    font-weight: 500;
}

.form-control:disabled {
    background-color: #f1f1f1;
}

.btn-update {
    width: 100%;
    background-color: #4e73df;
    color: white;
}

.btn-update:hover {
    background-color: #3b5dc9;
}

.visa-button-container {
    background-color: #e8eefe;
    padding: 10px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.visa-btn-draft {
    background-color: #212529;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.visa-btn-archive {
    background-color: #dc3545;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.visa-btn-verify {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.visa-btn-process {
    background-color: #3b4cc0;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #cececea3;
    outline: 0;
    box-shadow: 0 0 7px 0px rgb(206 206 206 / 47%);
}

.form-select:focus {
    /* color: #fafafa; */
    /* background-color: #21266e;
    border-color: #21266e; */
    outline: 0;
    box-shadow: 0 0 0px 1px rgba(13, 110, 253, .25);
}

.visa-btn-draft:hover,
.visa-btn-archive:hover,
.visa-btn-verify:hover,
.visa-btn-process:hover {
    opacity: 0.9;
}

.custom-visa-form {
    font-family: Arial, sans-serif;
    max-width: 400px;
}


.custom-form-group {
    margin-bottom: 15px;
}


.custom-form-group label {
    display: block;
    font-weight: 400;
    font-family: 'Poppins';
    margin-bottom: 5px;
}


.custom-required::after {
    content: '*';
    color: red;
    margin-left: 4px;
}


.custom-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.custom-radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

.custom-radio-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    vertical-align: sub;
    height: 18px;
    border: 2px solid #344395;
    border-radius: 50%;
    margin-right: 6px;
    cursor: pointer;
    position: relative;
}


.custom-radio-input:checked::before {
    content: "";
    width: 12px;
    padding: 6px;
    left: 1px;
    top: 1px;
    height: 12px;
    background-color: #344395;
    border-radius: 50%;
    position: absolute;
}

.apply-visa-card {
    border: none;
    max-width: 50%;
    margin: 0 auto;
    background: #f4f4f400;
}

.custom-radio-input:hover {
    border-color: #2a3578;
}

/* @media only screen and (max-width: 480px) {
    .sidebar {
        width: 270px;
        height: auto;
        background-color: #222;
        position: fixed;
        top: 0;
        left: 0;
        transition: width 0.3s ease-in-out;
        overflow: hidden;
        white-space: nowrap;
    }
} */

.login-container {
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    width: 90%;
    max-width: 900px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    position: relative;
    top: 50%;
    /* transform: translateY(18%); */
}


.login-form {
    padding: 40px 30px;
}

.login-form h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

.login-form p {
    color: #6c757d;
    margin-bottom: 30px;
}

.bg-login {
    background: url('../../images/background-image-cover.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
}

.login-form input {
    height: 45px;
    border-radius: 5px;
}

.login-form .form-control:focus {
    box-shadow: none;
    border-color: #4e5dff;
}

.login-form .btn-primary {
    width: 100%;
    border-radius: 5px;
    background-color: #373fbf;
    border: none;
}

.login-form .btn-primary:hover {
    background-color: #2c32a3;
}

.right-panel {
    /* background: url('../../images/login-image.png'); */
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0 10px 10px 0;
}

.right-panel h4 {
    font-weight: 600;
}

.login-eye {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.m-visa-card {
    width: 120px;
    height: 120px;
}

.m-barchart {
    height: 100%;
}

#gaugeChart {
    width: 450px;
    height: 450px;
    display: block;
    box-sizing: border-box;
}

/* .right-panel img {
    width: 100%;
    max-width: 250px;
    margin-top: 20px;
  } */
@media (max-width: 1440px) {
    .visa-gtoken {
        vertical-align: middle;
    }
}

@media (max-width: 1440px) {
    .circle-container {
        position: relative;
        width: 180px;
        height: 275px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: transparent;
    }

    .ring-1 {
        width: 200px;
        height: 200px;
        border-width: 6px;
    }

    .ring-2 {
        width: 170px;
        height: 170px;
        border-width: 6px;
    }

    .ring-3 {
        width: 140px;
        height: 140px;
        border-width: 6px;
    }

    .circle-number {
        position: absolute;
        top: 50%;
        left: 50%;
        font-size: 24px;
        font-weight: 500;
        color: black;
        transform: translate(-50%, -50%);
    }

    #gaugeChart {
        width: 204px !important;
        height: 204px !important;
        display: block;
        box-sizing: border-box;
    }

    .m-gaugechart {
        position: relative;
        display: inline-block;
        width: 200px;
        margin-top: -70px;
        text-align: center;
    }

    .visa-align {
        margin-top: 5px;
    }

    .m-dashapplication {
        position: absolute;
        top: 36%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 12px;
        color: #888;

    }
}

@media (max-width: 1024px) {
    .circle-container {
        position: relative;
        width: 180px;
        height: 275px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: transparent;
    }

    .ring-1 {
        width: 200px;
        height: 200px;
        border-width: 6px;
    }

    .ring-2 {
        width: 170px;
        height: 170px;
        border-width: 6px;
    }

    .ring-3 {
        width: 140px;
        height: 140px;
        border-width: 6px;
    }

    .circle-number {
        position: absolute;
        top: 50%;
        left: 50%;
        font-size: 24px;
        font-weight: 500;
        color: black;
        transform: translate(-50%, -50%);
    }

    #gaugeChart {
        width: 204px !important;
        height: 204px !important;
        display: block;
        box-sizing: border-box;
    }

    .m-gaugechart {
        position: relative;
        display: inline-block;
        width: 200px;
        margin-top: -70px;
        text-align: center;
    }

    .visa-align {
        margin-top: 5px;
    }

    .m-dashapplication {
        position: absolute;
        top: 36%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 12px;
        color: #888;

    }
}

@media (max-width: 768px) {
    .right-panel {
        border-radius: 0 0 10px 10px;
    }

    .visa-gtoken {
        vertical-align: middle;
    }

    .login-container {
        background-color: #fff;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        overflow: hidden;
        position: absolute;
        left: 25px;
        width: 100% !important;
        max-width: 100%;
        top: 20px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .bg-login {
        background: url(../../images/background_image.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .circle-container {
        position: relative;
        width: 180px;
        height: 275px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: transparent;
    }

    .ring-1 {
        width: 200px;
        height: 200px;
        border-width: 6px;
    }

    .ring-2 {
        width: 170px;
        height: 170px;
        border-width: 6px;
    }

    .ring-3 {
        width: 140px;
        height: 140px;
        border-width: 6px;
    }

    .circle-number {
        position: absolute;
        top: 50%;
        left: 50%;
        font-size: 24px;
        font-weight: 500;
        color: black;
        transform: translate(-50%, -50%);
    }

    #gaugeChart {
        width: 204px !important;
        height: 204px !important;
        display: block;
        box-sizing: border-box;
    }

    .m-gaugechart {
        position: relative;
        display: inline-block;
        width: 200px;
        margin-top: -70px;
        text-align: center;
    }

    .visa-align {
        margin-top: 5px;
    }

    .m-dashapplication {
        position: absolute;
        top: 36%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 12px;
        color: #888;

    }
}

@media only screen and (max-width: 480px) {
    .sidebar {
        width: 270px;
        height: -webkit-fill-available;
        height: -moz-available;
        height: fill-available;
        background-color: #222;
        position: fixed;
        top: 0;
        left: 0;
        transition: width 0.3s ease-in-out;
        overflow: hidden;
        white-space: nowrap;
    }

    .visa-gtoken {
        vertical-align: middle;
    }

    .m-width {
        width: 50% !important;
    }

    .bg-login {
        background: url(../../images/background_image.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .login-container {
        background-color: #fff;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        overflow: hidden;
        position: absolute;
        left: 25px;
        width: 100% !important;
        max-width: 100%;
        top: 20px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .visa-btn-archive {
        background-color: #dc3545;
        color: white;
        padding: 10px 1%;
        border: none;
        border-radius: 4px;
        font-weight: 500;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .visa-btn-verify {
        background-color: #28a745;
        color: white;
        padding: 10px 10px;
        border: none;
        border-radius: 4px;
        font-weight: 500;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .visa-btn-process {
        background-color: #3b4cc0;
        color: white;
        padding: 10px 10px;
        border: none;
        border-radius: 4px;
        font-weight: 500;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .m-search {
        gap: 10px;
        padding: 7px 30px;
        font-size: 14px;
        margin: 5px;
    }

    .m-pills {
        gap: 5px;
    }

    .nav-pills .nav-link {
        background: #ffffff;
        border: 1px solid #dfdfdf;
        border-radius: 25px;
        color: #121212;
        margin-left: 0px;
    }

    .main-content.expanded {
        margin-left: 60px;
        width: calc(100% - 0px);
    }

    .applicant-card {
        border: 2px solid #ccc;
        border-radius: 8px;
        padding: 20px;
        max-width: 650px;
        padding: 5px;
        margin: 5px;
        background-color: #fff;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    }

    .apply-visa-card {
        border: none;
        max-width: 100%;
        margin: 0 auto;
        background: #f4f4f400;
    }

    .m-visa-card {
        width: -webkit-fill-available;
        width: -moz-available;
        height: -webkit-fill-available;
        height: -moz-available;
    }

    .m-dashboard {
        margin: 5px;
    }

    #gaugeChart {
        width: 375px !important;
        height: 375px !important;
    }

    #search-options {
        background-size: 8px 8px;
    }

    .chart-container {
        position: relative;
        display: inline-block;
        width: 380px;
        margin-top: -70px;
        text-align: center;
    }

    .m-barchart {
        height: 400px;
    }

    .m-tapplication {
        width: fit-content;
    }
}

.css-13cymwt-control {
    border-width: 0px !important;
    box-shadow: none !important;

}

.css-t3ipsp-control:hover {
    border-color: #f5f5f5 !important;
}

.css-t3ipsp-control {
    border-style: none !important;
}

@keyframes fullBlinkEffect {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.02);
        box-shadow: 0 0 20px rgba(255, 136, 0, 0.4);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.custom-outline-btn {
    color: #3d66b4;
    border: 1px solid #3d66b4;
    background-color: transparent;
}

.custom-outline-btn:hover {
    background-color: #3d66b4;
    color: #fff;
    border-color: #3d66b4;
}

.full-blink {
    animation: fullBlinkEffect 0.4s ease-in-out;
}

.markup-exception-td {
    border: 1px solid #dee2e6;
    vertical-align: middle;
    padding: 0.75rem;
}

.markup-exception-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}


.markup-swal-container {
    font-size: 13px;
    max-width: 950px;
}

.tab-content-container {
    transition: transform 0.3s ease-in-out;
}

.slide-left {
    animation: slideOutLeft 0.3s forwards;
}

@keyframes slideOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-100%);
    }
}
/* Remove blue background from editor */
.react-smart-editor {
  background-color: transparent !important;
}

.react-smart-editor .ProseMirror {
  background-color: transparent !important;
}

/* Ensure all text elements have transparent background */
.react-smart-editor .ProseMirror > * {
  background-color: transparent !important;
}

/* Remove any background from text spans */
.react-smart-editor .ProseMirror span[style*="background-color"] {
  background-color: transparent !important;
}

/* Style for toolbar */
.react-smart-editor .toolbar {
  background-color: #f8f9fa !important;
  border-bottom: 1px solid #e0e0e0;
}

/* Style for toolbar buttons */
.react-smart-editor .toolbar button {
  background-color: transparent !important;
}

.react-smart-editor .toolbar button:hover {
  background-color: #e9ecef !important;
}

/* Fix for any other elements that might have background colors */
.react-smart-editor * {
  background-color: transparent !important;
}
