:focus {
    outline: inherit !important;
    box-shadow: inherit !important;
}

.dropdown-menu {
    border-radius: 12px;
    background: var(--thirdBG);
    padding: 0px;
    color: var(--grey-text);
    min-width: 180px;
    border: 1px solid var(--thirdBG-border);
}

li.dropdown-item {
    padding: 0px !important;
    border-radius: 0px !important;
    color: var(--grey-text);
}

li.dropdown-item > a.dropdown-item {
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0px 15px !important;
    color: var(--grey-text);
    font-size: 14px;
    border-radius: 0px;
}

li.dropdown-item:focus, .dropdown-item:hover, .dropdown-item:focus {
    background: inherit;
    color: inherit;
    outline: inherit;
}

.dropdown-menu > li > .dropdown-item:hover,
.dropdown-menu > li > .dropdown-item:focus {
    background: var(--body);
    color: var(--text-color);
}

.dropdown-menu > li:nth-child(even) {
    border-top: 1px solid var(--thirdBG-border);
    border-bottom: 1px solid var(--thirdBG-border);
}

.dropdown-menu > li:first-child{
    border-top: 0px solid transparent;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}

.dropdown-menu > li:first-child > .dropdown-item {
    border-top: 0px solid transparent;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}

.dropdown-menu > li:last-child {
    border-bottom: 0px solid transparent;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.dropdown-menu > li:last-child > .dropdown-item {
    border-bottom: 0px solid transparent;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.dropdown-divider:focus, .dropdown-item:hover, .dropdown-item:focus {
    background: var(--secondBG);
    color: var(--text-color);
}

.dropdown-divider {
    display: none;
}

.card {
    border-radius: 12px;
    background: var(--secondBG);
    box-shadow: 0 6px 10px rgba(0, 0, 0, .1);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.client-home-cards .card {
    border-top: 0px solid transparent !important;
}

.home-domain-search .input-group-wrapper {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(51, 65, 85, 0.8) 100%);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 16px;
    padding: 32px;
    margin: 40px auto;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 700px;
}

.home-domain-search .input-group {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.home-domain-search .btn-link {
    background: linear-gradient(135deg, var(--accent) 0%, #38bdf8 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.home-domain-search .btn-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
    color: white;
    text-decoration: none;
}

.JC-Card {
    position: relative;
    border-radius: 16px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(51, 65, 85, 0.8) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(75, 85, 99, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.JC-Card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.JC-Card:hover::before {
    opacity: 1;
}

.JC-HomepageContainer {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.JC-HomeSection {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.JC-HomeSection-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.JC-HomeSection-grids {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.JC-CardCol {
    display: flex;
    flex-direction: column;
}

.JC-CardGap15 {
    gap: 1rem;
}

.JC-FlexCenter {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.primary-content .card, .primary-content .mc-promo-login, .primary-content .mc-promo-manage {
    margin-bottom: 0px;
}

.mc-promo-login .panel-heading .primary-content h3, .mc-promo-manage .panel-heading .primary-content h3, .primary-content .card-title, .primary-content .mc-promo-login .panel-heading h3, .primary-content .mc-promo-manage .panel-heading h3, .primary-content .promo-container .header h3, .promo-container .header .primary-content h3 {
    margin-bottom: 0px;
}

.JC-HomeSection-grids i {
    font-size: 38px;
}

.card-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.JC-CardHover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.2);
    border-color: var(--accent);
    transition: all 0.4s ease;
}

.card-tagline {
    font-size: 17px;
    color: var(--grey-text-dark);
}

section#main-body {
    padding-top: 50px;
    position: relative;
    z-index: 1;
}

/* Enhanced input styling */
.form-control, .field, input[type="text"], input[type="email"], input[type="password"] {
    background: rgba(30, 41, 59, 0.8) !important;
    border: 1px solid rgba(75, 85, 99, 0.5) !important;
    color: var(--text-color) !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px);
}

.form-control:focus, .field:focus, input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1) !important;
    background: rgba(51, 65, 85, 0.9) !important;
    transform: translateY(-1px);
}

/* Domain search section header */
.primary-content h1, .primary-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: var(--widthMain) !important;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl {
    padding: 0px !important;
}

.JC-SidebarContainer, #order-standard_cart .JC-Sidebar {
    width: 100%;
    max-width: 320px;
    padding: 0px !important;
}

#order-standard_cart .JC-Sidebar .list-group-item:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.card>.list-group:last-child, .mc-promo-login>.list-group:last-child, .mc-promo-manage>.list-group:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.JC-MainContainer {
    width: 100%;
}

.JC-EntireContainer {
    display: flex;
    flex-wrap: nowrap;
}

.row {
    margin: 0px;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    padding: 0px;
    max-width: 100%;
    flex: inherit;
}

.card-body {
    padding: 20px 30px !important;
}

.JC-Grid {
    display: grid;
}

.JC-GridTwo {
    grid-template-columns: repeat(2, 1fr);
}

.JC-GridThree {
    grid-template-columns: repeat(3, 1fr);
}

.JC-GridGap {
    gap: 15px;
}

.JC-GridGap > .form-group {
    margin-bottom: 0px;
}

.JC-FlexGap > .form-group {
    margin-bottom: 0px;
}

.JC-Flex {
    display: flex;
}

.JC-FlexRow {
    flex-direction: row;
}

.JC-FlexCol {
    flex-direction: column;
}

.JC-FlexGap {
    gap: 15px;
}

.JC-FlexCenter {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    gap: 15px;
}

.JC-CenterMargin {
    margin: 0 auto;
}

.JC-MarginVertical {
    margin: 15px auto;
}

.JC-MarginTop {
    margin-top: 15px;
}

.JC-MarginBottom {
    margin-top: 15px;
}

.card-title {
    margin-bottom: 15px !important;
}

.card-header .card-title {
    margin-bottom: 0px !important;
}

.card-header:first-child {
    border-radius: 12px;
}

.card-header {
    padding: 15px 20px;
}

#registration .prepend-icon .field-icon {
    margin-bottom: 0px !important;
}

.sidebar-menu-item-label {
    width: 100%;
}

.table-mt25 {
    margin-top: 25px;
}

tr.masspay-total td {
    background-color: var(--body);
}

.masspay-invoice-detail td:first-child {
    color: var(--grey-text-dark);
}

.table thead th {
    border-bottom: 1px solid vaR(--thirdBG-border);
    background: var(--body);
}

tr > .bg-default {
    background: var(--accentBody);
}

.form-control, .field {
    background: var(--body) !important;
    border: 1px solid var(--thirdBG-border) !important;
    height: 50px !important;
    font-size: 16px !important;
    color: var(--grey-text) !important;
    border-radius: 12px !important;
}

.md-editor>.md-preview, .md-editor>textarea.markdown-editor {
    background: var(--body) !important;
    border: 1px solid transparent !important;
    border-top: 1px solid var(--thirdBG-border) !important;
    border-bottom: 1px solid var(--thirdBG-border) !important;
    height: auto !important;
    font-size: 16px !important;
    color: var(--grey-text) !important;
}

.md-editor>.md-preview, .md-editor>textarea.markdown-editor:focus {
    color: var(--text-color) !important
}

.input-group-text {
    border-radius: 0px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background: var(--body) !important;
    width: auto;
    padding-right: 0px;
    color: var(--grey-text) !important;
    justify-content: center;
    font-size: 14px;
    border: 1px solid var(--thirdBG-border);
}

#registration .form-control, #registration .field {
    border-radius: 10px !important;
}

.form-control:focus, .field:focus {
    border: 1px solid var(--accent) !important;
    color: var(--text-color) !important;
    outline: inherit;
}

.prepend-icon .field-icon {
    height: 50px !important;
    line-height: 50px !important;
}

.field-icon i {
    color: var(--gray) !important;
}

.btn {
    padding: 8px 26px;
    border-radius: 80px;
    font-size: 16px;
    border: 1px solid var(--accent);
    transition: var(--transition);
}

.btn:hover, .btn:focus, .btn:active {
    background: var(--accentHover) !important;
    transition: var(--transition);
    color: var(--text-color);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #38bdf8 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
    background: linear-gradient(135deg, #38bdf8 0%, var(--accent) 100%);
    color: white;
    text-decoration: none;
}

.btn-success {
    background: var(--accent);
    color: var(--text-color);
}

.btn-success:hover, .btn-success:focus, .btn-success:active {
    background: var(--accentHover) !important;
    border: 1px solid var(--accent);
    color: var(--text-color);
    outline: inherit;
}

.btn-default {
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
    font-weight: 600;
}

.btn-default:hover, .btn-default:focus, .btn-default:active {
    color: var(--text-color);
    background: var(--accentHover) !important;
    border: 1px solid var(--accent);
    background: transparent;
    outline: inherit;
}

.btn-default.active.focus, .btn-default.active:focus, .btn-default.active:hover, .btn-default:active.focus, .btn-default:active:focus, .btn-default:active:hover, .open>.dropdown-toggle.btn-default.focus, .open>.dropdown-toggle.btn-default:focus, .open>.dropdown-toggle.btn-default:hover {
    color: var(--text-color);
    border: 1px solid var(--accent);
    background: var(--accentHover) !important;
    background: transparent;
    outline: inherit;
}

.btn-info {
    background-color: var(--body);
    border-color: var(--thirdBG-border) !important;
    transition: var(--transition);
}

.btn-info:hover, .btn-info:focus, .btn-info:active {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    transition: var(--transition);
    color: var(--text-color);
}

.btn-primary.disabled, .btn-primary:disabled {
    background-color: var(--body);
    border-color: var(--thirdBG-border) !important;
    transition: var(--transition);
}

.btn i {
    margin-right: 5px;
}

.list-group-item {
    background: var(--secondBG);
    backdrop-filter: blur(5px);
    color: var(--grey-text-dark);
}

#registration label {
    color: var(--grey-text);
    font-size: 16px;
}

.JC-ZIndex {
    position: relative;
    z-index: 3;
}

.sidebar .list-group-item {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(75, 85, 99, 0.3);
    color: var(--grey-text-dark);
    border-radius: 10px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.sidebar .list-group-item:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.3);
    color: var(--accent);
    transform: translateX(4px);
}

div.list-group-item {
    background: inherit;
    color: var(--grey-text-dark);
}

div.list-group-item:hover, div.list-group-item:focus {
    background: inherit;
    color: var(--grey-text-dark);
}

a.list-group-item:hover, a.list-group-item:focus {
    background: var(--forthBG);
    transition: var(--transition);
    color: var(--grey-text-dark);
}

.sidebar .sidebar-menu-item-icon-wrapper {
    margin-right: 10px;
}

.list-group-flush>.list-group-item:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.progress {
    border-radius: 5px;
    background: var(--thirdBG-border);
}

.intl-tel-input .country-list {
    background: var(--thirdBG-border);
    border-color: var(--thirdBG-border);
    border-radius: 12px;
    max-width: 350px;
    overflow-x: hidden;
}

.intl-tel-input .country-list .country {
    padding: 8px 15px;
}

.tiles .tile {
    background: var(--secondBG);
    border: inherit;
    padding: 15px 20px;
    border-radius: 12px;
}

.tiles .tile i {
    color: var(--grey-text-dark);
    font-size: 34px;
    top: 15px;
}

.tiles .tile .stat {
    font-weight: 700;
}

.tiles .tile .highlight {
    display: none;
}

.tiles .tile:hover {
    background: var(--secondBG-hover);
}

.tiles .tile:hover i {
    font-size: 34px;
}

.card-header:first-child {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.card-accent-red,
.card-accent-asbestos,
.card-accent-gold, 
.card-accent-blue {
    border-top: inherit !important;
}

.div-service-item {
    padding: 15px 10px;
}

.client-home-cards .card-header {
    background: var(--secondBG);
    border-bottom: 1px solid var(--thirdBG-border);
}

.client-home-cards .list-group .list-group-item {
    border-bottom: 1px solid var(--thirdBG-border);
}

.client-home-cards .list-group .list-group-item:last-child {
    border-bottom: 1px solid var(--thirdBG-border) !important;
}

.client-home-cards .list-group .list-group-item {
    padding: 0px;
}

.client-home-cards .card-header .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 10px;
    margin: 0px;
    background: var(--accent);
}

.client-home-cards .card-body p, .client-home-cards .mc-promo-login .content p, .client-home-cards .mc-promo-manage .content p, .mc-promo-login .client-home-cards .content p, .mc-promo-manage .client-home-cards .content p {
    padding: 0px;
}

.client-home-cards .list-group {
    border-top: 1px solid var(--thirdBG-border) !important;
    border-bottom: inherit !important;
}

.client-home-cards .card-header .btn i {
    transform: rotate(-45deg);
}

.client-home-cards .card-header .btn:hover {
    background: var(--accentHover);
    color: var(--text-color);
}

a.list-group-item {
    padding: 10px 20px !important;
}

.table-list>tbody>tr>td {
    background: var(--secondBG);
    color: var(--text-color);
    transition: var(--transition);
    font-weight: 400;
}

.dataTables_wrapper table.table-list {
    border: 1px solid var(--thirdBG-border);
    border-radius: 12px;
}

.dataTables_wrapper thead tr th:first-child {
    border-top-left-radius: 12px !important;
}

.dataTables_wrapper thead tr th:last-child {
    border-top-right-radius: 12px !important;
}

.dataTables_wrapper tbody tr:last-child td:first-child{
    border-bottom-left-radius: 12px !important;
}

.dataTables_wrapper tbody tr:last-child td:last-child{
    border-bottom-right-radius: 12px !important;
}

div.dataTables_wrapper div.dataTables_length select {
    border-radius: 12px !important;
}

.sidebar .list-group-item .badge {
    background-color: var(--thirdBG-border);
    color: var(--grey-text-dark);
}

.text-muted {
    color: var(--grey-text-dark) !important;
}

.table-list>tbody>tr:hover>td {
    background: var(--body);
    transition: var(--transition);
}

.dataTables_wrapper table.table-list thead th {
    border: inherit !important;
    border-bottom: 1px solid var(--thirdBG-border) !important;
}

table.table-list thead th {
    background: var(--thirdBG);
    color: var(--grey-text-dark);
    font-weight: 500;
}

.table td, .table th {
    border-top: 1px solid var(--thirdBG-border) !important;
}

.table tr:first-child td {
    border-top: inherit !important;
}

.dataTables_wrapper table.table-list thead th.sorting_asc, .dataTables_wrapper table.table-list thead th.sorting_desc {
    background: var(--secondBG);
}

.page-item.active .page-link, .pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    background: var(--accent);
    border-color: var(--thirdBG-border);
}

.page-item.disabled .page-link {
    color: var(--grey-text-dark);
    background-color: var(--thirdBG);
    border-color: var(--thirdBG-border);
}

.page-link {
    background-color: var(--secondBG);
    border: 1px solid var(--thirdBG-border);
}

.pagination>li>a, .pagination>li>span {
    color: var(--grey-text-dark);
}

.page-link:hover {
    border-color: var(--thirdBG-border);
    color: var(--text-color);
    background: var(--accent);
}

.alert {
    padding: 15px;
    border-radius: 12px;
}

.alert .float-right {
    line-height: 50px;
}

.sidebar .list-group-item.active, .sidebar .list-group-item.active:focus, .sidebar .list-group-item.active:hover {
    background: var(--accentBody);
    transition: var(--transition);
    color: var(--text-color);
    border-color: var(--accentBody);
}

div.product-details div.product-icon {
    background: var(--body);
}

div.product-details-tab-container {
    border: 1px solid var(--thirdBG-border);
    background: var(--secondBG) !important;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.nav-tabs {
    border-bottom: 1px solid var(--thirdBG-border);
}

.announcements .announcement article {
    background: var(--body);
    border-left: inherit;
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
}

.kb-category a {
    border-radius: 10px;
}

.kb-category a:hover {
    background: var(--forthBG);
}

.badge-info {
    color: var(--grey-text-dark);
    font-size: 12px;
    text-transform: uppercase;
    background: var(--thirdBG-border);
    padding: 6px 10px;
}

.btn-danger {
    border-color: #dc3545 !important;
}

.kb-category .text-muted {
    font-size: 16px;
}

.form-control-sm {
    border-radius: 12px !important;
}

.JC-BorderRadius {
    border-radius: 12px !important;
}

.JC-NoBorder {
    border-radius: 0px !important;
}

.JC-NoBorder-left {
    border-radius: 0px !important;
    border-top-left-radius: 12px !important;
    border-bottom-left-radius: 12px !important;
}

.JC-NoBorder-right {
    border-radius: 0px !important;
    border-top-right-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
}

.kb-article-item i {
    color: var(--grey-text-dark) !important;
}

.border-left {
    border-left: 1px solid var(--thirdBG-border) !important;
}

.btn-toolbar .btn {
    padding: 5px 15px;
}

.responsive-tabs-sm .nav-item a {
    margin-right: 10px;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: var(--text-color);
    background-color: var(--forthBG);
    border-color: var(--thirdBG-border);
    transition: var(--transition);
}

.responsive-tabs-sm .nav-item a:hover {
    background: var(--thirdBG-border);
    transition: var(--transition);
    border-color: var(--thirdBG-border);
}

.responsive-tabs-sm-connector {
    display: none !important;
}

#order-standard_cart .JC-Sidebar {
    padding: 0px;
}

.md-editor {
    border-color: var(--thirdBG-border) !important;
    border-radius: 12px !important;
}

.md-editor>.btn-toolbar {
    background: var(--body) !important;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;

    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.md-editor .md-footer{
    background: var(--body);
    padding: 10px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.md-editor>.md-header {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

div.md-editor.active {
    border-color: var(--accent);
}

.custom-file-label {
    color: var(--grey-text-dark);
    background-color: var(--body);
    border: 1px solid var(--thirdBG-border);
    border-radius: 10px;
}

.custom-file-label::after {
    color: var(--grey-text-dark);
    background-color: var(--thirdBG-border);
    border: 1px solid var(--thirdBG-border);
}

.custom-file-input, .custom-file-label, .custom-file-label::after {
    height: 42px;
}

.md-editor.md-fullscreen-mode {
    background: var(--secondBG) !important;
    padding: 0px !important;
}

.md-editor.md-fullscreen-mode .md-header{
    top: initial;
}

.md-editor.md-fullscreen-mode .md-input, .md-editor.md-fullscreen-mode .md-preview {
    background: var(--body) !important;
    border-radius: 12px !important;
    padding-top: 60px !important;
    color: var(--grey-text-dark) !important;
}

.md-editor.md-fullscreen-mode .md-input:focus, .md-editor.md-fullscreen-mode .md-input:hover {
    border: 1px solid var(--accent) !important;
    background: var(--body) !important;
}

.col-button-left {
    width: 100%;
}

.col-button-right {
    margin-top: 10px;
    width: 100%;
}

form > .table thead th {
    border-bottom: 1px solid var(--thirdBG-border) !important;
}

#inputAddCcEmail {
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.sidebar .title {
    font-weight: 600;
    color: var(--text-color);
}

.table tr > td:first-child {
    padding-left: 15px;
}

.view-ticket .posted-by {
    color: var(--grey-text-dark);
    font-size: 14px;
    background-color: var(--body);
    padding: 10px;
    border-radius: 8px;
}

.requestor-type-authorizeduser {
    background-color: var(--thirdBG-border);
    color: var(--grey-text-dark);
    font-weight: 600;
}

.bs-popover-auto[x-placement^=bottom]>.arrow::after, .bs-popover-bottom>.arrow::after {
    border-bottom-color: var(--thirdBG-border);
}

.popover-user-notifications {
    background: var(--thirdBG);
    border-color: var(--thirdBG-border);
    border-radius: 12px;
    padding: 0px;
}

.popover-user-notifications ul li {
    border-bottom: 1px solid var(--thirdBG-border);
    min-height: auto;
    padding: 0px;
}

.popover-user-notifications ul li a {
    padding: 15px 20px !important;
    text-decoration: none;
    color: var(--grey-text-dark);
    font-size: 14px;
}

.popover-user-notifications li:first-child a {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.popover-user-notifications li:last-child a {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.popover-user-notifications ul li a:hover {
    background: var(--forthBG);
}

.table {
    color: var(--grey-text-dark);
}

.btn-remove-user {
    margin-top: 15px;
}

.modal-content {
    border: 1px solid var(--thirdBG-border);
    background-color: var(--thirdBG);
    border-radius: 12px;
}

.modal .modal-header {
    background: var(--accent) !important;
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
    border-bottom: 1px solid var(--thirdBG-border);
}

.modal-body > .row {
    flex-wrap: nowrap;
}

.modal-body > .form-group {
    margin-bottom: 15px;
}

.bootstrap-switch {
    border-color: var(--thirdBG-border);
    margin-top: 15px;
}

.modal-footer {
    border-top: 1px solid var(--thirdBG-border);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.copy-to-clipboard img {
    filter: invert(1);
    margin-right: 5px;
}

.alert {
    list-style: inside;
}

@media (max-width: 767.98px) {
    .responsive-tabs-sm {
        background: var(--forthBG) !important;
        width: 100% !important;
        border-color: var(--thirdBG-border) !important;
        border-radius: 0px !important;
        
        border-top-left-radius: 10px !important;
        border-top-right-radius: 10px !important;
    }

    .responsive-tabs-sm .nav-item {
        border-bottom: inherit !important;
    }

    .responsive-tabs-sm .nav-item:first-child a {
        border-radius: 0px !important;
        border-top-left-radius: 10px !important;
        border-top-right-radius: 10px !important;
    }

    .responsive-tabs-sm .nav-item:last-child {
        border-radius: 0px !important;
    }

    .responsive-tabs-sm .nav-item a {
        padding: 10px 15px !important;
    }
    
    .responsive-tabs-sm .nav-item {
        margin-left: 0px;
        border-bottom: 1px solid var(--thirdBG-border);
    }

    .responsive-tabs-sm .nav-item a.active {
        background: var(--body) !important;
    }
}

/* RESPONSIVE */

@media only screen and (max-width: 1100px) {
    .JC-HomeSection-grids {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 968px) {
    .JC-EntireContainer {
        flex-wrap: wrap;
    }

    .JC-SidebarContainer {
        max-width: 100%;
    }

    #order-standard_cart .JC-Sidebar {
        max-width: 100%;
    }
}

@media only screen and (max-width: 850px) {
    .JC-SecondaryNavbar {
        display: none;
    }
}

@media only screen and (max-width: 600px) {
    .JC-GridTwo {
        grid-template-columns: repeat(1, 1fr);
    }

    .btn {
        width: 100%;
    }

    .card-body {
        padding: 20px !important;
    }

    .JC-HomeSection-grids {
        grid-template-columns: repeat(1, 1fr);
    }

    .JC-HomeSection-grids .card-title {
        font-size: 18px;
    }
}

/* ========================================
   ENHANCED HOMEPAGE STYLES - ENDERHOST
======================================== */

/* Hero Section */
.JC-HeroSection {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.9) 0%, rgba(22, 37, 69, 0.9) 50%, rgba(30, 58, 138, 0.9) 100%);
    border-radius: var(--borderRadius);
    padding: 60px 40px;
    margin-bottom: 80px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.15);
}

.JC-HeroContent {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.JC-HeroTitle {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.JC-HeroAccent {
    color: var(--accent);
    text-shadow: 0 0 30px rgba(14, 165, 233, 0.3);
}

.JC-HeroSubtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 15px;
}

.JC-HeroDescription {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--grey-text-dark);
    margin-bottom: 35px;
}

.JC-HeroButtons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.JC-HeroBtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
}

.JC-HeroBtn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #38bdf8 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.JC-HeroBtn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.4);
    color: white;
}

.JC-HeroBtn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--accent);
}

.JC-HeroBtn-secondary:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.JC-HeroVisual {
    position: relative;
    flex: 0 0 300px;
    height: 300px;
}

.JC-HeroCircle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), rgba(14, 165, 233, 0.3));
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.JC-HeroCircle-1 {
    width: 200px;
    height: 200px;
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.JC-HeroCircle-2 {
    width: 150px;
    height: 150px;
    bottom: 50px;
    right: 50px;
    animation-delay: 2s;
}

.JC-HeroCircle-3 {
    width: 100px;
    height: 100px;
    top: 100px;
    right: 150px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Statistics Section */
.JC-StatsSection {
    margin-bottom: 80px;
}

.JC-StatsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.JC-StatCard {
    background: linear-gradient(135deg, var(--secondBG) 0%, var(--forthBG) 100%);
    border-radius: var(--borderRadius);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--thirdBG-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.JC-StatCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transition: all 0.6s ease;
}

.JC-StatCard:hover::before {
    left: 100%;
}

.JC-StatCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.15);
    border-color: var(--accent);
}

.JC-StatIcon {
    background: linear-gradient(135deg, var(--accent) 0%, #38bdf8 100%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: white;
}

.JC-StatNumber {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
    line-height: 1;
}

.JC-StatLabel {
    font-size: 1rem;
    color: var(--grey-text-dark);
    font-weight: 500;
}

/* Section Headers */
.JC-SectionHeader {
    text-align: center;
    margin-bottom: 50px;
}

.JC-SectionTitle {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.JC-SectionSubtitle {
    font-size: 1.2rem;
    color: var(--grey-text-dark);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced Product Cards */
.JC-ProductCard {
    position: relative;
    background: linear-gradient(135deg, var(--secondBG) 0%, var(--forthBG) 100%);
    border: 1px solid var(--thirdBG-border);
    transition: all 0.4s ease;
    overflow: hidden;
}

.JC-ProductCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #38bdf8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.JC-ProductCard:hover::before {
    transform: scaleX(1);
}

.JC-ProductCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.15);
    border-color: var(--accent);
}

.JC-ProductIcon {
    background: linear-gradient(135deg, var(--accent) 0%, #38bdf8 100%);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

.JC-CardArrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.3s ease;
    opacity: 0;
}

.JC-ProductCard:hover .JC-CardArrow {
    opacity: 1;
    transform: rotate(45deg);
}

/* Support Cards */
.JC-SupportCard {
    background: linear-gradient(135deg, var(--secondBG) 0%, var(--forthBG) 100%);
    border: 1px solid var(--thirdBG-border);
    transition: all 0.3s ease;
    position: relative;
}

.JC-SupportCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.1);
    border-color: var(--accentHover);
}

.JC-SupportIcon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, #38bdf8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.JC-SupportCard:hover .JC-SupportIcon {
    transform: scale(1.1);
}

.JC-SupportDesc {
    color: var(--grey-text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 10px;
}

.JC-TicketCard:hover {
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.2);
}

/* Account Cards */
.JC-AccountCard {
    background: linear-gradient(135deg, var(--secondBG) 0%, var(--forthBG) 100%);
    border: 1px solid var(--thirdBG-border);
    transition: all 0.3s ease;
}

.JC-AccountCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.1);
    border-color: var(--accentHover);
}

.JC-AccountIcon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, #38bdf8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.JC-AccountCard:hover .JC-AccountIcon {
    transform: scale(1.1);
}

.JC-AccountDesc {
    color: var(--grey-text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 10px;
}

.JC-PaymentCard:hover {
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.2);
}

/* Enhanced Section Spacing */
.JC-ProductSection,
.JC-SupportSection,
.JC-AccountSection {
    margin-bottom: 80px;
}

/* Responsive Design */
@media only screen and (max-width: 1200px) {
    .JC-HeroTitle {
        font-size: 3rem;
    }
    
    .JC-HeroSection {
        padding: 50px 30px;
    }
}

@media only screen and (max-width: 968px) {
    .JC-HeroSection {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 40px 20px;
    }
    
    .JC-HeroVisual {
        flex: none;
        margin-top: 40px;
    }
    
    .JC-HeroTitle {
        font-size: 2.5rem;
    }
    
    .JC-HeroButtons {
        justify-content: center;
    }
    
    .JC-SectionTitle {
        font-size: 2rem;
    }
    
    .JC-StatsGrid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .JC-HeroTitle {
        font-size: 2rem;
    }
    
    .JC-HeroSubtitle {
        font-size: 1.2rem;
    }
    
    .JC-HeroDescription {
        font-size: 1rem;
    }
    
    .JC-HeroBtn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .JC-SectionTitle {
        font-size: 1.8rem;
    }
    
    .JC-SectionSubtitle {
        font-size: 1rem;
    }
    
    .JC-StatsGrid {
        grid-template-columns: 1fr;
    }
    
    .JC-StatCard {
        padding: 30px 20px;
    }
    
    .JC-StatNumber {
        font-size: 2rem;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.JC-HomepageContainer > * {
    animation: fadeInUp 0.6s ease forwards;
}

.JC-HomepageContainer > *:nth-child(1) { animation-delay: 0.1s; }
.JC-HomepageContainer > *:nth-child(2) { animation-delay: 0.2s; }
.JC-HomepageContainer > *:nth-child(3) { animation-delay: 0.3s; }
.JC-HomepageContainer > *:nth-child(4) { animation-delay: 0.4s; }
.JC-HomepageContainer > *:nth-child(5) { animation-delay: 0.5s; }

/* Integration with Enhanced Theme Features */

/* Ensure cards work with new hover effects */
.card, .mc-promo-login, .mc-promo-manage {
    border-radius: 12px;
    background: var(--secondBG);
    box-shadow: 0 6px 10px rgba(0, 0, 0, .1);
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
    border: 1px solid rgba(14, 165, 233, 0.15);
}

.card:hover, .mc-promo-login:hover, .mc-promo-manage:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.4);
}

/* Enhanced client home cards */
.client-home-cards .card {
    border-top: 0px solid transparent !important;
    position: relative;
    overflow: hidden;
}

.client-home-cards .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.client-home-cards .card:hover::before {
    opacity: 1;
}

/* Enhanced dropdown compatibility */
.nav .dropdown-menu,
.navbar .dropdown-menu {
    background: linear-gradient(135deg, rgba(20, 35, 65, 0.95) 0%, rgba(22, 37, 69, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.2);
    margin-top: 8px;
    padding: 8px;
}

.dropdown-item,
.nav .dropdown-item,
.navbar .dropdown-item {
    color: var(--text-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-item:hover,
.nav .dropdown-item:hover,
.navbar .dropdown-item:hover {
    background: rgba(14, 165, 233, 0.15);
    color: var(--accent);
    transform: translateX(4px);
}

/* Enhanced form elements */
.form-control:focus, 
.field:focus, 
input[type="text"]:focus, 
input[type="email"]:focus, 
input[type="password"]:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
    background: rgba(51, 65, 85, 0.9) !important;
    transform: translateY(-1px);
}

/* Enhanced button animations */
.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #38bdf8 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: linear-gradient(135deg, #38bdf8 0%, var(--accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
    color: white;
}

/* Enhanced sidebar integration */
.sidebar .list-group-item {
    padding: 14px 20px;
    border-color: var(--thirdBG-border);
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 2px;
}

.sidebar .list-group-item:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.3);
    color: var(--accent);
    transform: translateX(4px);
}

/* Enhanced table styling */
.table {
    background: var(--secondBG);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.table thead th {
    border-bottom: 1px solid var(--thirdBG-border);
    background: linear-gradient(135deg, var(--body) 0%, var(--secondBG) 100%);
    color: var(--text-color);
    font-weight: 600;
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background: rgba(14, 165, 233, 0.05);
    transform: scale(1.01);
}

/* Enhanced alert styling */
.alert {
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    position: relative;
    overflow: hidden;
}

.alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
}

/* Enhanced pagination */
.pagination .page-item .page-link {
    background: var(--secondBG);
    border: 1px solid var(--thirdBG-border);
    color: var(--text-color);
    border-radius: 8px;
    margin: 0 2px;
    transition: all 0.3s ease;
}

.pagination .page-item .page-link:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.pagination .page-item.active .page-link {
    background: var(--accent);
    border-color: var(--accent);
}

/* Enhanced loading states */
.loading, .placeholder {
    background: linear-gradient(90deg, var(--secondBG) 25%, rgba(14, 165, 233, 0.1) 50%, var(--secondBG) 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Mobile dropdown enhancements */
@media (max-width: 768px) {
    .dropdown-menu {
        position: fixed !important;
        top: auto !important;
        left: 20px !important;
        right: 20px !important;
        width: auto !important;
        max-height: 70vh;
        overflow-y: auto;
        z-index: 1050;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
}

/* Enhanced accessibility */
.dropdown-toggle:focus,
.nav-link:focus,
.btn:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Smooth animations for all interactive elements */
* {
    scroll-behavior: smooth;
}

a, button, input, select, textarea {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced typography */
h1, h2, h3, h4, h5, h6 {
    background: linear-gradient(135deg, var(--text-color) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

/* Performance optimizations */
.floating-navbar,
.dropdown-menu,
.card {
    will-change: transform, opacity;
}

/* Enhanced error and success states */
.is-invalid {
    border-color: #0ea5e9 !important;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1) !important;
}

.is-valid {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}