@tailwind base;
@tailwind components;
@tailwind utilities;
/* #F1F1F9 */
:root{
    --logo-blue: #8BD6ED;
    --logo-dark-blue: #2093B6;
    --background-blue-root: #F1F1F9;
    --font-darker: #959391;
    --theme-dark-blue: #1714BE;
    --theme-white : #ffffff;
    --theme-hover-color: #f6f6fc;
    --theme-light-blue: #F3FCFF;
    --dark-font-color: #303030;
    --inactive-background: #F3FCFF;
    --dark-logo-for-font: #63B1C8;
    --background-blue-root-light: #fafafd;
    --active-text-color: #63B1C8;
    --red-background-color: #FFECEC;
    --active-background: #DFF2DE;
    --active-text: #59A859;
    --dark-red-text: #FF5959;
    --billing-card-background-color: #F9F9FF;
    --payment-method-card-backgroud-color: #F1F1F9;
    --admin-theme-background: #F8F8F8;
    --filter-button-background: #EEEEEE;
    --dark-theme-header-subscriber-background : #123755;
    --dark-theme-button-main-background : #46a4de;
    --dark-theme-border-color-py-gig-background: #9ed9ee;
    --dark-theme-second-button-background:#083956;
    --dark-theme-inactive-background:#fafaff;
    --dark-theme-heading-text: #A9ABBD;
    --dark-theme-table-head: #F1F1FA;
    /* --payment-method-delete-button-:#EAFAFF; */
}
body{
    background-color: #F1F1F9;
    font-family: 'Poppins' , sans-serif !important; 

}

/* Custom button for Control Center / Lead-Management */
.responsive-nav-btn {
    display: inline-block;
    border: 2px solid #fff;
    border-radius: 9999px; /* fully rounded */
    color: #fff;
    padding: 0.5rem 2rem; /* default (desktop) */
    font-size: 1rem;      /* base text */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;     /* prevent overflow on long words */
    transition: all 0.2s ease-in-out;
    text-align: center;
}

/* Blue variant */
.responsive-nav-btn--blue {
    border-color: #083956;
    color: #083956;
    border: 3px solid #083956 ;
}


/* Medium screens (tablets) */
@media (max-width: 1024px) {
    .responsive-nav-btn {
        padding: 0.4rem 1.5rem;
        font-size: 0.95rem;
        max-width: 180px;
    }
}

/* Small screens (phones) */
@media (max-width: 640px) {
    .responsive-nav-btn {
        padding: 0.3rem 1rem;
        font-size: 0.85rem;
        border-width: 1px; /* slimmer border */
        max-width: 150px;
    }
}

[x-cloak] { display: none !important; }
/* In your custom CSS file (app.css or custom-styles.css) */
.custom-badge {
    position: absolute;
    top: 2;
    right: 2;
    background-color: #10b981 !important ;

}
.custom-red-badge{
    position: absolute;
    top: 2;
    right: 2;
    background-color: #ef4444 !important ;

}

@keyframes dropdownAnimation {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.animate-dropdown {
    animation: dropdownAnimation 0.3s ease-out forwards;
}
.chart-heading{
    color: #083857;
}

/* REGISTERATION PAGE CSS */
/* #suggestions {
    list-style: none;
    background: white;
    border: 1px solid #ccc;
    padding: 5px;
    z-index: 1000;
    overflow: hidden;
} */

.dropdown-item {
    padding: 8px 12px;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
}
.dropdown-item:active {
    color: black;
}


/* General */

.custom-nav-bar-dark{
    background-color: var(--dark-theme-second-button-background);
}
.custom-nav-bar-hover:hover{
    background-color: #083956;
    opacity: 0.9;
    transition: background-color 0.3s ease;
}

.navbar-brand{
    color: var(--theme-white);
}
.navbar-brand:hover{
    color: var(--theme-white);
}
.navbar-brand:active{
    color: var(--theme-white);
}

.dashboard-nav{
    margin-bottom: 24px;
    margin-top: 40px;
    border: 2px solid #083956;
    border-radius: 9999px;
    color: #083956;
}
.dashboard-tab-link{
    flex-grow: 1;
     display: inline-block; 
    min-width: 0;
    text-align: center;
}
.dashboard-nav-btn{
    width: 100%;
    padding: 10px 1rem;
    border-radius: 9999px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease;
    outline: none;
}

@media (min-width: 768px) {
    .dashboard-nav-btn {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (min-width: 1024px) {
    .dashboard-nav-btn {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1280px) {
    .dashboard-nav-btn {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.dashboard-nav-btn:hover {
    background-color: #e5e7eb; /* Tailwind's gray-200 */
}

.dashboard-nav-btn:focus {
    background-color: #083956;
    color: white;
}

.dashboard-nav-btn.active {
    background-color: #083956;
    color: white;
}

.custom-button-btn-hard{
    border-radius: 2em;
    /* background-color: var(--logo-dark-blue);
    color: var(--theme-light-blue); */
    border: 1px solid var(--logo-blue);

}
.custom-button-btn-hard-change-password{
    border-radius: 2em;
    border: 1px solid var(--logo-dark-blue);
    color: var(--logo-dark-blue);
    padding: 10px 20px 10px 20px;
    float: right;
    margin-right: 5%;
    font-size: large;
}
.custom-button-btn-hard-change-password:hover{
    background-color: var(--logo-dark-blue) !important;
    color: var(--theme-white);
}
.custom-button-btn-hard-change-password:active {
    transform: scale(0.95);
}
.custom-button-btn-hard-wholeseller-edit{
    border-radius: 2em;
    border: 1px solid var(--logo-dark-blue);
    color: var(--logo-dark-blue);
    padding: 10px 10px 10px 10px;
    float: right;
    /* margin-right: 5%; */
    font-size: medium;
}
.custom-button-btn-hard-wholeseller-edit:hover{
    border: 1px solid var(--logo-dark-blue)  !important;
    background-color: var(--logo-dark-blue) !important;
    color: var(--theme-white);
}
.custom-button-btn-hard-wholeseller-edit:active {
    border-radius: 2em;
    background-color: var(--logo-dark-blue) !important;
    color: var(--theme-white) !important;
    transform: scale(0.95);
}
.custom-button-btn-hard-wholeseller-delete{
    border-radius: 2em;
    background-color: var(--red-background-color);
    border: 1px solid var(--dark-red-text);
    color: var(--dark-red-text);
    padding: 5px 10px 5px 10px;
    float: right;
    margin-right: 5%;
    font-size: large;
}
.custom-button-btn-hard-wholeseller-delete:hover{
    background-color: var(--dark-red-text) !important;
    color: var(--theme-white);
}
.custom-button-btn-hard-wholeseller-delete:active{
    transform: scale(0.95);
}
.custom-button-btn-hard-wholeseller-edit-row{
    border-radius: 2em;
    background-color: var(--inactive-background);
    border: 1px solid var(--logo-blue);
    color: var(--logo-blue);
    padding: 5px 10px 5px 10px;
    margin-right: 5%;
    float: right;

    font-size: medium;
}
.custom-button-btn-hard-wholeseller-edit-row:hover{
    background-color: var(--logo-blue);
    color: var(--inactive-background);
}
.custom-button-btn-hard-wholeseller-edit-row:active{
    transform: scale(0.95);
}
.custom-button-btn-hard-wholeseller{
    border-radius: 2em;
    border: 1px solid var(--logo-blue);
    padding: 5px 10px 5px 10px;
    float: right;
    margin-left: 10px;
    margin-bottom: 20px;


}
.custom-button-btn-hard-wholeseller:hover{
    border-radius: 2em;
    border: 1px solid var(--logo-blue)  !important;
}

.custom-button-btn-hard:hover{
    border-radius: 2em;
    /* background-color: var(--theme-light-blue);
    color: var(--logo-dark-blue) !important; */
    border: 1px solid var(--logo-blue)  !important;
}

.custom-button-btn-light{
    border-radius: 2em;
    background-color: var(--theme-light-blue);
    color: var(--logo-dark-blue);
    border: 1px solid var(--logo-dark-blue) !important;
}
/* EAEAEA */
.custom-button-filter{
    background-color: #EAEAEA;
    color: var(--dark-theme-second-button-background);
    border-radius: 2em;
    border: 1px solid #EAEAEA;

}
.custom-button-filter:hover{
    background-color: var(--dark-theme-second-button-background);
    color: #EAEAEA;
    border: 1px solid var(--dark-theme-second-button-background);
}

.custom-button-filter:active{
    background-color: var(--dark-theme-second-button-background) !important;
    color: #EAEAEA;
    border: 1px solid var(--dark-theme-second-button-background);
}
/* Login-Page-CSS Start */

.custom-form-field{
    padding-left: 15%;
    padding-right: 15%;
}

.custom-login-btn{
    width: 100%;
}
.custom-btn{
    background-color: #8BD6ED;
    color: #FFFFFF;

}
.btn-outline-info:hover{
    color: #ffffff;
}
.custom-btn:hover{
    /* border: 2px black !important; */
    color: #ffffff !important;

}
.custom-card-changes{
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; */

}

.sign-up-bottom{
    background-color: #F1F1F9;

}

.sign-up-bottom p a{
    color: #8BD6ED;
}

.sign-up-bottom p{
    color: #959391;
}

.custom-heading{
    color: #959391;
}
.custom-paragraph{
    color: #959391;
}

/* Login-Page-CSS End */

.custom-card-changes-new{
    border: 0px solid black !important;
    min-height: 100vh;
    border-top-left-radius: 0;
    border-top-right-radius: 0em;
    border-bottom-right-radius: 1em;
    border-bottom-left-radius: 1em;
    background-color: var(--theme-white);

}
.custom-simple-card-changes-new{
    min-height: 100vh;
    background-color: var(--theme-white);

}

.custom-nav-changes{
    border-radius: 0 0 0 0;
    /* border-top-right-radius: 2em; */
    clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
    background-color: var(--dark-theme-inactive-background);
    font-weight: bold;
    font-size: 15px;
}

.custom-nav-changes .nav-link.active {
    border-radius: 0 0 0 0;
    clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
    padding-right: 45px;
    /* border-top-right-radius: 2em; */
    border-bottom: #ffffff;
    background-color: #ffffff;
    font-weight: bold;
}

.mobile-custom-nav-changes{
    background-color: var(--dark-theme-inactive-background);
    font-weight: bold;
}

.mobile-custom-nav-changes .nav-link.active {
    /* border-top-right-radius: 2em; */
    border-bottom: #ffffff;
    background-color: #ffffff;
    font-weight: bold;
}
.custom-nav-changes .nav-link {
    padding-right: 45px;
}

/* now i want to remove right padding from tablet view */
@media (min-width: 640px ) and (max-width: 850px) {
    .custom-nav-changes .nav-link {
        padding-right: 20px;
    }
    .custom-nav-changes .nav-link.active {
        padding-right: 20px;
    }
}
.nav-tabs{
    border-bottom: 0px solid #ffffff;
}

.custom-nav-changes a{
    color: var(--dark-theme-second-button-background) !important;
}

.tab-count{
    font-size: 9px;
    /* margin-right: 100px; */
    background-color: var(--dark-theme-second-button-background);
    padding: 4px 8px 4px 8px;
    border-radius: 2em;
    color: var(--theme-white);
    /* margin-top: 40%; */
    display: inline-block;
}
.tab-count-loader{
    font-size: 9px;
    /* margin-right: 100px; */
    background-color: var(--dark-theme-second-button-background);
    padding: 2px 8px 2px 8px;
    border-radius: 2em;
    color: var(--theme-white);
    /* margin-top: 40%; */
    display: inline-block;
}

.semibold-font{
    font-weight: 600;
    font-size: 15px;
}

.custom-text{
    font-weight: 600;
    font-size: 14px;
}

.custom-heading-font{
    font-size: 15px;
}
.custom-para-font{
    font-size: 14px;
}
.custom-para-bold{
    font-weight: 600;
    font-size: 14px;
}

.tab-count-mobile{
    font-size: 10px;
    font-weight: 600;
    /* margin-right: 100px; */
    background-color: var(--dark-theme-second-button-background);
    padding: 0px 3px 0px 3px;
    color: var(--theme-white);
    border-radius:0px 0px 0px 4px;
    /* letter-spacing: 1px */
    /* margin-top: 40%; */
}

/* .table thead tr{
    background-color:  var(--background-blue-root); 
} */

.custom-table thead tr th{
    background-color:  var(--dark-theme-table-head);
}

.btn-primary-changes{
    background-color: var(--dark-theme-second-button-background) !important;
    color: var(--theme-white);
    border-radius: 2em;
    font-weight: bold;
}
.btn-primary-changes:hover{
    background-color: var(--theme-white) !important;
    color: var(--dark-theme-second-button-background);
    border: 1px solid var(--dark-theme-second-button-background);
    font-weight: bold;
}
.search-field-changes{
    border-radius: 2em;
}
.custom-table thead tr th{
    border: 0px;
    color : var(--dark-theme-heading-text) !important;
    background-color:  var(--dark-theme-table-head);
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    /* letter-spacing: 0px; */
}
.custom-table th:first-child{
    border-radius:10px 0 0 10px;
    overflow: hidden;
}
.custom-table th:last-child{
    border-radius:0 10px 10px 0;
    overflow: hidden;
}

.custom-table tbody tr td{
    text-align: left;
    font-weight: 500;
    /* font-size: small; */
    border: 0px;
    color: #484848;
}
.custom-striped tbody tr {
    line-height: 30px !important;
}
.custom-striped tbody tr:nth-of-type(odd) td {
    background-color: var(--theme-white) !important; /* Custom color for odd rows */
}
/* .custom-striped tbody tr:nth-of-type(odd):hover td {
    background-color: var(--theme-hover-color) !important; Custom hover color
} */
.custom-table td:first-child{
    border-radius:10px 0 0 10px;
}
.custom-table td:last-child{
    border-radius:0 10px 10px 0;
}
.custom-striped tbody tr:nth-of-type(even) td {
    background-color: var(--background-blue-root-light) !important; /* Optional: Custom color for even rows */
    
}
/* .custom-striped tbody tr:nth-of-type(even):hover td {
    background-color: var(--theme-hover-color) !important; Custom hover color
} */

.custom-striped tbody tr.data-row:nth-of-type(odd):hover td,
.custom-striped tbody tr.data-row:nth-of-type(even):hover td {
    background-color: var(--theme-hover-color) !important;
}

.table{
    overflow:auto;
}

#web-image{
    height: 25px;
    width: 15px;
    display: inline-block;
    vertical-align: middle;
    object-fit:contain;
}

/* Table row hover effect */
/* .table tbody tr:hover {
    background-color: gray !important;
} */

/* .custom-table tbody tr:hover td { */
    /* background-color:gray !important; */
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transform: translateY(-1px); */
/* } */
/* .table tbody tr:hover {
    transition: all 0.5s ease;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
} */

/* .custom-table tbody tr:hover {
    background-color: gray !important;
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.5); */
    /* transform: translateY(-1px); */

.status-span-connected{
    background-color: #DFF2DE;
    padding: 5px 10px 5px 10px;
    border-radius: 2em;
    border: #69C069 2px;
    color: #69C069;
    font-size: small;
    font-weight: bold;
}
.status-span-not-connected{
    background-color: #e1e1e1;
    padding: 5px 10px 5px 10px;
    border-radius: 2em;
    border: #6a6a6a 2px;
    color: #6a6a6a;
    font-size: small;
    font-weight: bold;
}
.status-span-default{
    padding: 5px 10px 5px 10px;
    border-radius: 2em;
    border: #6a6a6a 1px solid;
    color: #6a6a6a;
    font-size: small;
    font-weight: bold;
}
.status-span-to-contact{
    background-color: #acdbf3;
    padding: 5px 10px 5px 10px;
    border-radius: 2em;
    border: #57b6e5 2px;
    color: #57b6e5;
    font-size: small;
    font-weight: bold;
}
.status-span-urged{
    background-color: #FFF4B9;
    padding: 5px 10px 5px 10px;
    border-radius: 2em;
    border: #DA930F 2px;
    color: #DA930F;
    font-size: small;
    font-weight: bold;
}

.rounded-icon{
    font-size:10px !important;
}

/* choose plan screen */

.custom_heading{
    margin-left: 5%;
    margin-top: 5%;
    font-weight: bold;
    color: var(--font-darker);
}
.custom-gigs{
    background-color: var(--background-blue-root);
    min-height: 200px;
    min-width: 200px;
    margin-left: 5%;
    margin-top: 5%;
    border-radius: 1em;
    /* border: 1px var(--font-darker); */
    border : 1px solid var(--font-darker);

}
.gig-heading{
    color: black;
    font-weight: bold;
    font-size: large;
    margin-top:10%;
    margin-bottom: 5%;
    margin-left: 10%;

}

.gig-body{
    min-height: 180px;
    color: var(--font-darker);
    font-size: medium;
    margin-left: 5%;
    margin-top:10%;
    margin-bottom: 10%;
    list-style: circle;
    margin-bottom: 10%;
}
.gig-body-bottom{
    color: var(--font-darker);
    font-size: medium;
    margin-left: 5%;
    margin-top:10%;
    list-style: circle;
}


.gig-body li{
    margin-bottom: 10%;
}
.custom-breaker{
    border-top: 2px solid var(--font-darker);
    /* color: var(--font-darker); */
    width: 100%;
}
.gig-footer-radio{
    margin-left: 45%;
}
.gig-footer-heading{
    margin-left: 25%;
    color: black;
    font-weight: bold;
    font-size: medium;
    padding-top: 5%;
    padding-bottom: 10%;
}
.gig-footer{
    margin-top: 10%;
    margin-bottom: 10%;
}

.custom-gigs-bottom{
    background-color: var(--background-blue-root);
    min-height: 200px;
    min-width: 200px;
    margin-left: 5%;
    margin-top: 5%;
    margin-bottom: 5%;
    border-radius: 1em;
    /* border: 1px var(--font-darker); */
    border : 1px solid var(--font-darker);
}

/* .card:hover {
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
} */

.custom-gigs:hover{
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border : 2px solid var(--logo-dark-blue);
}

.gig-footer-radio:checked{
    accent-color: var(--logo-dark-blue);
}

.button-row-choose-plan{
    padding: 0% 5% 5% 5%;

}
#discount{
    margin-top: 25%;
    float: right;
    margin-right: 5%;
}
.custom-gigs-bottom:hover{
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border : 2px solid var(--logo-dark-blue);
}
.custom_paragraph{
    margin-left: 5%;
    margin-top: 2%;
    color: var(--dark-font-color);
}
.custom_wholeseller_form{
    margin-left: 4%;
    margin-top: 2%;
}
.custom_table_heading{
    color: var(--font-darker);
}
.custom_wholeseller_form_table td{
    padding-left: 10px;
    padding-bottom: 10px;
}
.custom_wholeseller_form_table th{
    padding-left: 10px;
}
.custom_wholeseller_form_table{
    /* min-height: 500px; */
}
.custom-heading-reg{
    color: #959391;
    font-size: large;
    font-weight: bold;
    margin-bottom: 5%;
    margin-top: 3%;
    text-align: center;
}
.custom-form-control{
    margin-bottom: 20px;
}
.custom-login-btn-reg{
    width: 50%;
    background-color: var(--dark-theme-button-main-background);
    color: var(--theme-white);
    border-radius: 2em;

}
.custom-login-btn-reg:hover{
    background-color: var(--theme-white) !important;
    border-color: 1px solid var(--dark-theme-button-main-background) !important;
    color: var(--dark-theme-button-main-background) !important;

}
.custom-login-btn-reg:active {
    background-color: var(--theme-white) !important;
    border-color: 1px solid var(--dark-theme-button-main-background) !important;
    color: var(--dark-theme-button-main-background) !important;

}
.custom-filter-btn{
    float:right;
    background-color: var(--dark-theme-button-main-background);
    border: 1px solid var(--dark-theme-button-main-background);
    border-radius: 2em;
    color: var(--theme-white)

}
.custom-filter-btn:hover{
    float:right;
    background-color: var(--theme-white);
    color: var(--dark-theme-button-main-background);
    border: 1px solid var(--dark-theme-button-main-background);
    
}

.custom-filter-btn:active{
    float:right;
    background-color: var(--theme-white)!important;
    color: var(--dark-theme-button-main-background)!important;
    border: 1px solid var(--dark-theme-button-main-background)!important;
    
}
.modal-title-custom{
    font-size: x-large;
    font-weight: bold;
    color: var(--font-darker);
}
.modal-header{
    border: 0px;
}
.custom-icon{
    transform: rotate(90deg);
}
/* ADD ENTRY MODAL CSS */

.custom-gigs-add-entry{
    background-color: var(--background-blue-root);
    width: 100%;
    margin-top: 5%;
    border-radius: 1em;
    /* border: 1px var(--font-darker); */
    border : 1px solid var(--font-darker);

}
.gig-body-add-entry{
    color: var(--font-darker);
    font-size: medium;
    margin-left: 5%;
    margin-top:2%;
    margin-bottom: 5%;
    list-style: circle;
}
.gig-footer-radio-add-entry{
    float: right;
    height: 20px;
    width: 20px;
}
.error{
    color:red;
}
/* Notification CSS */
.hidden {
    display: none;
}
#flash-message {
    z-index: 9999;
    animation: fadeIn 0.3s ease-in-out;
}
#error-message {
    z-index: 9999;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.back-icon{
    color: var(--dark-theme-second-button-background) !important;
    /* margin-left: 10%;
    margin-top: 20%; */
}
.custom_heading_settings{
    /* margin-top: 5%; */
    font-weight: bold;
    color: var(--font-darker);
}
.left-menu{
    border-bottom: 1px solid black;
    padding-bottom: 5px;
}
.left-menu li{
    width: fit-content;
    height: fit-content;
    font-weight: bolder;
    margin-right: 10%;
    padding: 2%;
    border-radius: 2em;
}
.left-menu li.active{
    font-weight: bolder;
    margin-right: 20px;
    background-color: #5B7D99;
    color: var(--theme-white);
}
/* Change password settings page */
.custom-form-field-settings{
    padding-left: 20%;
    padding-right: 20%;
}
.settings-textbox{
    min-height: 60px;

}
.custom_wholeseller_edit_form_table{
    min-width: 100%;
}

.custom_wholeseller_edit_form_table td{
    padding-left: 10px;
    padding-bottom: 10px;
    padding-top: 20px;

}
.custom_wholeseller_edit_form_table th{
    padding-left: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
}
/* Custom nav tabs */

.custom-nav-tabs .nav-link {
    border: none;
    color: #959391; /* inactive tabs color */
    padding: 10px 15px;
    position: relative;
}

.custom-nav-tabs .nav-link.active {
    color: #2093B6; /* selected tab color */
    border-bottom: 2px solid #2093B6; 
}

.custom-nav-tabs .nav-link:not(.active)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
}
.custom-current-plan-card{
    background-color: var(--inactive-background);
    border-radius: 2em;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    overflow: auto;
}
.current-plan-table{
    width: 100%;
}
.custom-current-plan-card-footer{
    background-color: var(--logo-dark-blue);
    border-radius: 2em;
    color: var(--theme-white);
}
.custom-current-plan-card-footer h1{
    margin-left: 1%;
}
.active-span{
    background-color: var(--active-background);
    padding: 10px;
    color: var(--active-text);
    border-radius: 2em;
}
.expired-span{
    background-color: #FFF4B9;
    padding: 10px;
    color: #DA930F;
    border-radius: 2em;
}
.cancelled-span{
    background-color: var(--red-background-color);
    padding: 10px;
    color: #FF5959;
    border-radius: 2em;
}
.billing-history-payment-container{
    background-color: var(--billing-card-background-color);
    border-radius: 1em;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.active-span-billing{
    background-color: var(--active-background);
    padding: 10px 20px 10px 20px;
    color: var(--active-text);
    border-radius: 2em;
}
.billing-history-table{
    width: 100%;
}
.billing-history-table thead{
    border-bottom: 1px solid var(--font-darker);
}
.billing-history-table thead th{
    border-right: 1px solid var(--font-darker);
    padding-left: 1em ;
}
.billing-history-table tbody tr td{
    padding-left: 1em ;
}
.unpaid-span-billing{
    background-color: #FFF4B9;
    padding: 10px 20px 10px 20px;
    color: #DA930F;
    border-radius: 2em;
}
.payment-method-card{
    background-color: var(--payment-method-card-backgroud-color);
    border-radius: 1em;
}
.payment-method-card-body{
    padding: 7% 2% 7% 2%;
}
.custom-radio-payment-default{
    height: 20px;
    width: 20px;   
}
.custom-button-btn-hard-payment-method-delete{
    border-radius: 1em;
    /* border: 1px solid var(--logo-dark-blue); */
    color: var(--dark-red-text);
    background-color: var(--red-background-color);
    padding: 10px 10px 10px 10px;
    font-size: large;
    height: 100%;
    width: 100%;
}
.custom-button-btn-hard-payment-method-delete:hover{
    background-color: var(--dark-red-text) !important;
    color: var(--theme-white);
}
.custom-button-btn-hard-payment-method-delete:active{
    transform: scale(0.95);
}
.se-info{
    font-weight: bold;
    font-size: large;
}
.payment-brand-image{
    min-width: 40px;
    min-height: 40px;
    height: 100%;
    width: 100%;
}
/* CUSTOM PAYMENT METHOD CARD */
.custom-payment-method-card{
    box-shadow: rgba(3, 102, 214, 0.3) 0px 0px 0px 3px;
    height: 5em;
    width: 10em;
    border-radius: 1em;
    /* padding: 3em; */
}
.custom-payment-method-card:hover{
    box-shadow: var(--logo-dark-blue) 0px 0px 0px 3px;
}


.custom-button-btn-hard-add-wholesaler-edit{
    border-radius: 2em;
    border: 1px solid var(--logo-dark-blue);
    color: var(--logo-dark-blue);
    padding: 10px 10px 10px 10px;
    margin-right: 5%;
    font-size: large;
}
.custom-button-btn-hard-add-wholesaler-edit:hover{
    border: 1px solid var(--logo-dark-blue)  !important;
    background-color: var(--logo-dark-blue) !important;
    color: var(--theme-white);
}
.custom-button-btn-hard-add-wholesaler-edit:active {
    border-radius: 2em;
    background-color: var(--logo-dark-blue) !important;
    color: var(--theme-white) !important;
    transform: scale(0.95);
}
.center-block{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.custom-button-btn-hard-add-wholesaler-submit-long{
    border-radius: 2em;
    /* border: 1px solid var(--logo-dark-blue); */
    color: var(--theme-white);
    background-color: var(--logo-dark-blue) !important;

    width: 100%;
    padding: 2% 25% 2% 25%;
    margin-right: 5%;
    font-size: large;
}
.custom-button-btn-hard-add-wholesaler-submit-long:hover{
    border: 1px solid var(--logo-dark-blue)  !important;
    background-color: var(--theme-white) !important;
    color: var(--logo-dark-blue);
}
.custom-button-btn-hard-add-wholesaler-submit-long:active {
    border-radius: 2em;
    background-color: var(--logo-dark-blue) !important;
    color: var(--theme-white) !important;
    transform: scale(0.95);
}



/* ADMIN CSS */

/* Side Bar */
.sidebar {
    background-color: var(--theme-white);
    min-height: 100vh;
}
.sidebar-toggle {
    display: none;
}
@media (max-width: 768px) {
    .sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        z-index: 1050;
        overflow-y: auto;
        transition: transform 0.3s ease-in-out;
    }
    .sidebar.show {
        display: block;
        transform: translateX(0);
    }
    .sidebar-toggle {
        display: block;
    }
}

.logo-image{
    width: 10em;
    height: 5em;
}

.sub-panel-logo{
    height: 1em;
    width: 8.5em;
    margin-left: 3%;
}
@media (min-width: 640px) {
    .sub-panel-logo{
        height: 1.3em;
        width: 11em;
        margin-left: 10%;
    }
}
.sidebar-custom-nav .nav-item{
    padding: 10px;
}
.nav-tabs .nav-link{
    border-color: transparent !important;
}
.nav-tabs .nav-link:hover{
    border-color: transparent !important;
}
.sidebar-custom-nav .h6{
    color: var(--font-darker);
}
.admin-app{
    background-color: var(--admin-theme-background);
}
.user-image-container img{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin-right: 30px;
    border: 2px solid var(--logo-dark-blue);
}
.notification-container img{
    height: 40px;
    width: 35px;
    margin-right: 15px;
}
.sidebar-container{
    height: 40px;
    width: 35px;
    margin-right: 15px;
}
.card-body-custom{
    padding: 30px;
    padding-right: 30px;
    min-height: 100%;
    border-radius: 1em;
}
.row-height{
    height: auto;
}
.custom-card-user-table{
    border-radius: 1em;
}
.filter-btn{
    border-radius: 50%;
    padding: 10px;
    background-color: var(--filter-button-background);
}
.filter-btn img{
    height: 20px;
    width: 20px;
}
.promocode-button{
    background-color: var(--dark-theme-button-main-background);
    color: var(--theme-white)
}
.promocode-button:hover{
    background-color: var(--theme-white);
    color: var(--dark-theme-button-main-background);
    border: solid 1px var(--dark-theme-button-main-background);;

}
.promocode-button:active{
    background-color: var(--theme-white);
    color: var(--dark-theme-button-main-background);
    border: solid 1px var(--dark-theme-button-main-background);;


}
.no-wrap{
    white-space: nowrap;
}
.wrap-text {
    white-space: nowrap;
  }
.modal-border{
    border:2px solid #9e9e9e;
}

.filter-submit{
    border:1px solid #35a8e0 !important;
    background-color:#35a8e0 !important; 
    border-radius:50px !important;
}

.filter-field{
    border:0px !important; 
    background-color:#f4f4fb !important; 
    height:40px !important;
}

.filter-select{
    border:0px !important; 
    background-color:#f4f4fb !important; 
    height:40px !important;
}

.half-star::before {
    content: '★';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #ffc107; /* Bootstrap yellow */
}
.star {
    color: gray;
}
.scrollbar-hidden::-webkit-scrollbar {
  display: none; /* Safari & Chrome */
}
.scrollbar-hidden {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.tab-border{
    /* we want light border on left with very light gray and very small just like 1 px */
    border-right: 1px solid #e0e0e030;
}

.mobile-card-border{
    border-bottom: 2px solid #e0e0e060;

}


.map-modal {
    backdrop-filter: blur(8px);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.map-modal.hidden {
    opacity: 0;
    visibility: hidden;
}

.map-container {
    height: clamp(400px, 80vh, 700px);
}

.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.leaflet-marker-pane .leaflet-marker-icon {
    transition: transform 0.2s ease;
}

.leaflet-marker-pane .leaflet-marker-icon:hover {
    transform: scale(1.2);
}

.leaflet-control.custom-attrib img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

.custom-section {
    padding-top: 0.5rem;    
    padding-bottom: 0.25rem;
    padding-left: 1rem;     
    padding-right: 1rem;    
    width: 100%;            
    display: flex;   
    justify-content: space-between;       
    align-items: center;    
}

@media (min-width: 640px) {
    .custom-section {
        padding-top: 1.5rem;     
        padding-bottom: 0;     
        padding-left: .75rem;       
        padding-right: .75rem;      
        width: auto;           
        flex: none;            
    }
}

/* bootstrap compatible */
@media (min-width: 768px) {
    .left-menu{
        border-right: 1px solid black;
        min-height: 500px;
        padding-left: 5%;
    }
    .left-menu li{
        font-weight: bolder;
        margin-top: 10%;
        padding: 5%;
        border-radius: 2em;
    }

    .left-menu li.active{
        font-weight: bolder;
        margin-top: 10%;
        background-color: #5B7D99;
        color: var(--theme-white);
    }
}

.dashboard-modal-header{
    background-color:#f7fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dashboard-modal-heading{
    font-size: medium;    
    color: #959391;
    font-weight: bold;
}

@media (min-width: 640px) {
  .custom-padding {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* .dashboard-modal{
    
  }
  .dashboard-modal-header{
    
  } */
  .dashboard-modal-heading{
    font-size: x-large;
  }
}

.dashboard-btn{
    color: var(--theme-white);
    padding: .65rem 1.75rem;
    border-radius: 9999px;
    background-color: var(--dark-theme-second-button-background);
}

.dashboard-border {
    border: 2px solid #083956; 
    box-sizing: border-box;
    border-radius: 1rem; /* Match shadow rounding */
    background-clip: padding-box; /* Prevent bg from bleeding into border */
}


.dashboard-section-layout{
    margin-left: 2rem;
    margin-right: 2rem;
}

@media (min-width: 768px) {
    .dashboard-section-layout {
        margin-left: 5rem /* 48px */;
        margin-right: 5rem /* 48px */;
    }
}

.dashboard-table thead tr th{
    border: 0px;
    color: #083956;
    text-align: left;
}

.dashboard-table tbody tr td{
    text-align: left;
    color: #083956;
    border: 0px;
}
/* .custom-striped tbody tr {
    line-height: 30px !important;
} */
.dashboard-striped tbody tr:nth-of-type(odd) td {
    background-color: var(--theme-white) !important; /* Custom color for odd rows */
}
/* .custom-striped tbody tr:nth-of-type(odd):hover td {
    background-color: var(--theme-hover-color) !important; Custom hover color
} */
.dashboard-table td:first-child{
    border-radius:10px 0 0 10px;
}
.dashboard-table td:last-child{
    border-radius:0 10px 10px 0;
}
.dashboard-striped tbody tr:nth-of-type(even) td {
    background-color: var(--background-blue-root-light) !important; /* Optional: Custom color for even rows */
    
}


/* Restrict hover effect to data rows only */
.dashboard-striped tbody tr:not(.non-hover-row):hover td {
    background-color: var(--theme-hover-color) !important;
}
.category-scroll {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  z-index: 13;
  /* overflow-x: auto; */
  border-bottom: 1px solid #e5e7eb;
  background-color: white;
  scroll-behavior: smooth;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.modal-input:hover,
.modal-input:focus {
    border-color: #3b82f6; 
}

/* Dropdown container */
.dropdown-wrapper {
  position: relative;
  width: 100%;
}

/* Trigger box (looks like input/select) */
.dropdown-trigger {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: white;
  cursor: pointer;
  font-size: 15px;
  transition: border-color 0.2s;
  overflow: hidden;
  text-overflow: ellipsis; /* Ensures text is truncated with ellipsis */
  white-space: nowrap; /* Prevents text from wrapping */
}

.dropdown-trigger:hover,
.dropdown-trigger:focus {
  border-color: #3b82f6; /* blue-500 */
}

/* Individual item */
.dropdown-item {
  padding: 10px 12px;
  cursor: pointer;
  font-size: 15px;  
  text-overflow: ellipsis;
  overflow: hidden;
}

.dropdown-item:hover {
  background-color: #eff6ff; /* blue-50 */
}

.dropdown-item.selected {
  background-color: #dbeafe; /* blue-100 */
  font-weight: 500;
}

.sidebar {
  position: absolute;
  left: 0; /* ⬅️ change from right: 0 */
  top: 0;
  height: 100%;
  width: 350px;
  max-width: 85%;
  background: #fff;
  transform: translateX(-100%); /* slide in from left */
  transition: transform 0.3s ease-in-out;
  z-index: 12;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #e5e7eb;
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar-header {
  padding: 16px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar-header h2 {
  margin: 0;
  font-size: 1.25rem;
  color: #222;
}
.sidebar-header button {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #555;
  cursor: pointer;
}
.sidebar-body {
  padding: 16px;
  font-size: 0.875rem;
  color: #333;
}

.hover-preview {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 8px 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  font-size: 0.875rem;
  color: #333;
  transition: opacity 0.2s;
  opacity: 0;
  transform: translate(-50%, -100%);
  z-index: 11;
}
.hover-preview.visible {
  opacity: 1;
}

.sidebar-tab-active {
 border-left: 3px solid #083956; /* Tailwind's blue-500 */
}
.sidebar-tab-inactive{
    border-left: 3px solid transparent; /* No border for inactive tabs */
}

.filter-modal-layout {
  width: 100%;
  max-width: 100%;
  height: 100vh;
}

.filter-modal-backdrop{
    padding: 0%;
}

@media (min-width: 768px) {
  .filter-modal-layout {
    width: 600px;
    max-width: 90%;
    height: 90vh;
  }
  .filter-modal-backdrop{
    padding: 5%;    
  }
  .map-icon-border{
    border-radius: 50%;
    border: 2px solid #083857;
}

}

@media (min-width: 1024px) {
  .filter-modal-layout {
    width: 800px;
    max-width: 90%;
    height: 90vh;
  }
  .filter-modal-backdrop{
    padding: 10%;
  }
}

@media (min-width: 1280px) {
  .filter-modal-layout {
    width: 1000px;
    max-width: 80%;
    height: 90vh;
  }
  .filter-modal-backdrop{
    padding: 15%;
  }
}


.clearfilte-btn{
    background-color: #f4f4f4;
}
.clearfilte-btn:hover{
    background-color: #e2e2e2;
}

.smooth-hover {
    transition: all 0.3s ease-in-out;
}

.smooth-hover:hover {
    background-color: #ffffff20;
    border-color: transparent;
}
.custom-alert {
  position: fixed;
  inset: 0;
  background: rgba(0, 56, 87, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  backdrop-filter: blur(3px); /* subtle glass effect */
}

.custom-alert.hidden {
  display: none;
}

.custom-alert-content {
  background: #f7fafc;
  padding: 25px 35px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  max-width: 400px;
  width: 90%;
  text-align: center;
  animation: alertEnter 0.3s ease-out;
  position: relative;
}

.custom-alert-title {
  font-size: 20px;
  font-weight: bold;
  color: #083857;
  margin-bottom: 8px;
}

.custom-alert-message {
  font-size: 15px;
  color: #2d3748;
  line-height: 1.4;
}

.custom-alert-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.custom-alert-buttons button {
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

/* OK button - primary */
#custom-alert-ok {
  background: linear-gradient(135deg, #0a4c6f, #083857);
  color: #f7fafc;
}
#custom-alert-ok:hover {
  background: linear-gradient(135deg, #0b5278, #094260);
}

/* Cancel button - neutral */
#custom-alert-cancel {
  background-color: #e2e8f0;
  color: #083857;
}
#custom-alert-cancel:hover {
  background-color: #cbd5e0;
}

/* Animations */
@keyframes alertEnter {
  from {
    opacity: 0;
    transform: translateY(-15px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* modal.css */
.modal-shadow {
    /* Soft, professional shadow */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* apply to the tag scroller: use a class e.g. .tag-scroller */
.tag-scroller {
  overflow-x: auto;
  overflow-y: hidden !important;              /* prevent vertical scrollbar */
  -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
  scrollbar-width: thin;            /* Firefox */
}

/* WebKit browsers (Chrome, Edge, Safari) — horizontal scrollbar height and thumb */
.tag-scroller::-webkit-scrollbar {
  height: 8px;                      /* thickness for horizontal bar */
}
.tag-scroller::-webkit-scrollbar-track {
  background: transparent;
}
.tag-scroller::-webkit-scrollbar-thumb {
  background: #cbd5e1;              /* color */
  border-radius: 9999px;
  border: 2px solid transparent;    /* small padding effect */
}

/* optionally hide vertical scrollbar completely for WebKit */
.tag-scroller::-webkit-scrollbar:vertical {
  display: none;
}

.crm-btn{
    border: 2px solid #083956;
    border-radius: 9999px;
    color: #083956
}
.blue-font{
    color: #083956;
}
.blue-bg{
    background-color: #083956;

}
/* Custom round checkbox */
.round-checkbox {
  appearance: none;              /* remove default browser styling */
  -webkit-appearance: none;      /* for Safari */
  -moz-appearance: none;         /* for Firefox */
  width: 20px;
  height: 20px;
  border: 2px solid #083956;     /* Tailwind blue-600 */
  border-radius: 50%;            /* makes it a perfect circle */
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.round-checkbox:checked {
  background-color: #3b82f6;     /* fill blue when checked */
  border-color: #083956;
}

.round-checkbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: white;             /* white dot inside */
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

