html,
body,
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    scrollbar-width: none;
}

html,
body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

body {
    overflow: hidden !important;
}

body::-webkit-scrollbar {
    display: none;
}

* a, .tdl-0 {
    text-decoration-line: none;
}

.btn-radius-50 {
    border-radius: 50px;
}

.tdl-none {
    text-decoration-line: none !important;
}

.hover-success:hover {
    background-color: var(--bs-success);
}

.hover-warning:hover {
    background-color: var(--bs-warning);
}

.bg-green {
    background-color: var(--bs-green);
}

.btn-green, .btn-success { 
    background-color: var(--bs-green) !important;
}

.btn-green:hover {
    color: var(--bs-light) !important;
    border: 1px var(--bs-green) solid; 
    background-color: var(--bs-green) !important;
}

.btn-orange:hover {
    color: var(--bs-light) !important;
    border: 1px var(--bs-orange) solid; 
    background-color: var(--bs-orange) !important;
}

.btn-outline-green, .btn-outline-primary {
    color: var(--bs-green) !important;
    border: 1px var(--bs-orange) solid;
    background-color: var(--bs-light);
}

.btn-outline-green:hover, .btn-outline-primary:hover {
    color: var(--bs-light) !important;
    columns: var(--bs-light) !important;
    background-color: var(--bs-green);
}

.text-green, .text-primary {
    color: var(--bs-green) !important;
}

.text-orange {
    color: var(--bs-orange) !important;
}

.btn-xs {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 0.2rem;
}

.btn-link {
    color: var(--bs-green) !important;
}

.nav .active{
    background-color: var(--nesthub-primary) !important;
}

.list-group .active {
    background-color: var(--nesthub-gray) !important;
    color: var(--nesthub-dark-green) !important;
}

/* sidebar & content */
.sidebar-section,
.content-section {
    height: 90vh;
    padding-bottom: 4rem;
    overflow-y: auto;
    overflow-x: hidden;
} 

/* scrollbars */
.sidebar-section::-webkit-scrollbar,
.content-section::-webkit-scrollbar {
    width: 6px;
}

.sidebar-section::-webkit-scrollbar-thumb,
.content-section::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

/* banner */
.banner-area .carousel-control-prev,
.banner-area .carousel-control-next {
    width: 1px;
} 

.carousel {
    position: relative;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: none;
    align-items: center;
    justify-content: center;
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    padding: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 1rem;
    height: 1rem;
    background-size: 100% 100%;
}

/* /Banner section */

/* documentation */
.docs {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    height: 100vh;
}

.docs .sidebar {
    width: 280px;
    background-color: var(--bs-gray-dark);
    color: #fff;
    padding: 20px;
    overflow-y: auto;
}

.docs .sidebar h2 {
    margin-bottom: 20px;
    font-size: 20px;
}

.docs .sidebar ul {
    list-style: none;
    padding: 0;
}

.docs .sidebar ul li {
    margin-bottom: 12px;
}

.docs .sidebar ul li a {
    text-decoration: none;
    color: #cbd5e1;
    font-size: 15px;
    display: block;
    padding: 8px 12px;
    border-radius: 4px;
}

.docs .sidebar ul li a:hover {
    background-color: #334155;
    color: #fff;
}

.docs .content {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    display: block;
}

.docs .content h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.docs .content section {
    margin-bottom: 40px;
}

.docs .content h2 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 12px;
}

.docs .content ol {
    padding-left: 20px;
}

.docs .content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* /documentation */

/* pricing page */
.pricing-page .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* Center items horizontally */
}

.pricing-page .col-md-4 {
    display: flex;
    justify-content: center;
    /* Center the card inside */
    flex: 0 0 33.333%;
    /* Prevent shrinking and maintain width */
    max-width: 33.333%;
    /* Maintain consistent size */
}

.pricing-page .col-md-4 .card {
    flex: 1 1 auto;
    /* Allow the card to take up full width inside the column */
    max-width: 100%;
    /* Ensure it doesn’t exceed the column’s width */
}

@media (max-width: 768px) {
    .pricing-page .col-md-4 {
        flex: 0 0 100%;
        /* Full-width for small screens */
        max-width: 100%;
    }
}

.payment-stepper-modal .step {
    display: none;
}

.payment-stepper-modal .step.active {
    display: block;
}

.payment-stepper-modal .stepper .step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.payment-stepper-modal .stepper .step-indicator div {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-bottom: 3px solid #ccc;
}

.payment-stepper-modal .stepper .step-indicator .active {
    border-bottom: 3px solid var(--bs-green);
    font-weight: bold;
}

.payment-stepper-modal .payment-btn {
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s;
}

.payment-stepper-modal .payment-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.payment-stepper-modal .payment-btn.active {
    background-color: lightgrey;
    color: #fff;
    border-color: var(--bs-warning);
}

/* /pricing page */

/* auth */
.wallpaper-container img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.tagline-context {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
}

.card-login-wallpaper,
.card-login {
    height: 100vh;
}

/* /auth */

.bg-primary {
    background-color: var(--nesthub-dark-green) !important;
}

/* header */

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--bs-green) 0%, var(--bs-success) 100%) !important;
}

.bg-gradient-light {
    background: linear-gradient(135deg, var(--bs-light) 0%, var(--bs-light) 100%) !important;
}

.bg-gray {
    background: linear-gradient(135deg, var(--nesthub-gray) 0%, var(--nesthub-gray) 100%) !important;
}

.hover-lift:hover {
    transform: translateY(-2px);
    transition: all 0.2s;
}

.hover-scale:hover {
    transform: scale(1.05);
    transition: all 0.2s;
}

.hover-bg-light:hover {
    background-color: #f8f9fa;
}

.notification-item:hover {
    background-color: var(--nesthub-dark-green) !important;
}

.avatar {
    flex-shrink: 0;
    box-sizing: border-box;
}

.avatar-xl {
    width: 3.5rem;
    height: 3.5rem;
}

.search-container {
    position: relative;
}

.search-container .search-btn:hover {
    color: var(--bs-light) !important;
    background-color: var(--nesthub-dark-green) !important;
}

.search-suggestions {
    z-index: 1050;
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
}

/* /header */

/* sidebar */
.menu-inner * {
    color: var(--bs-light) !important;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

/* /sidebar */

.btn-success {
    background-color: var(--bs-green) !important;
}

/* CRM UI */

.navbar-brand {
    padding-top: .75rem;
    padding-bottom: .75rem;
}

.sidebar .nav-link {
    font-weight: 500;
    color: #333;
}

.sidebar .nav-link.active {
    color: #fd7e14;
}

/* Empty main content styling */
.empty-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 56px);
    color: #888;
    font-size: 1.2rem;
}

.li-unstyled {
    list-style: none;
}

[data-bs-theme="dark"] * {
    background-color: var(--bs-dark) !important;
    color: var(--bs-light) !important;
}

/* /CRM UI */

/* Tables */
table {
    width: 100% !important;
}
/* /Tables */

/* Emails Section */
.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.avatar-circle-sm {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 10px;
} 

.avatar-title {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
} 

.email-body-content {
    min-height: 300px;
    line-height: 1.6;
}

.email-html-content img {
    max-width: 100%;
    height: auto;
}

.email-html-content table {
    width: 100% !important;
    margin-bottom: 1rem;
}

.email-html-content pre {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.25rem;
    overflow-x: auto;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    transition: box-shadow 0.3s ease-in-out;
}
/* /Emails Section */

/* Uploads */
.border-dashed {
    border: 2px dashed #dee2e6;
}

.cursor-pointer {
    cursor: pointer;
}

.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1);
}

.file-upload-area:hover {
    border-color: #0d6efd;
}

.form-select.searchSelect {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}
/* /Uploads */

/* Bootstrap Overrides */
.modal-xxl {
    max-width: 1550px !important;
}
.btn-primary {
    background-color: var(--bs-green) !important;
}
.border-orange {
    border-color: var(--bs-orange) !important;
}
.bg-none, .bg-none:hover {
    background: none !important;
    box-shadow: none !important;
}
/* /Bootstrap Overrides */