
/* ---------------Admin Dashboard ----------*/
.dcard{
    background-color:#343a40 ;
    color: #f8f9fa;
}
.dcard:hover{
    background-color: #6c757d; /* Muted dark for active state */
    color: #f8f9fa;
}

/* Sidebar Styles */
.sidebar {
    background-color: #343a40; /* Dark gray background */
    color: #f8f9fa; /* Light text */
}



ul.theme-nav li.nav-item {
    width: 100%;
}

/* Active Class for Main Menu */
ul.theme-nav .nav-item.active > .nav-link {
    background-color: #6c757d; /* Muted dark for active state */
    color: #f8f9fa;
    display: block;
}

/* Hover Effect for Main Menu */
ul.theme-nav .nav-item > .nav-link:hover {
    background-color: #6c757d;
    color: #f8f9fa;
    display: block;
}

/* Margin for Menu Items */
ul.theme-nav li {
    margin-top: 10px; /* Adjust the value as needed */
}

/* star rating */
.star-rating {
    direction: rtl;
    font-size: 2rem;
    unicode-bidi: bidi-override;
    display: inline-block;
}
.star-rating input {
    display: none;
}
.star-rating label {
    color: #ddd;
    cursor: pointer;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #ffca08;
}
/* Table editing */
.tb_heading {
    background-color: #343a40; /* Dark gray background */
    color: #f8f9fa; /* Light text */
}
.tb_heading th {
    background-color: #343a40; /* Dark gray background */
    color: #f8f9fa; /* Ensure th inherits text color */
}
/* button */
.custom-padding {
    padding: 2px 6px 6px 4px; /* Adjust as needed */
}
.custom-span {
    line-height: 1;  /* Reduce the default line height */
    display: inline-block; /* Ensure it's inline-block for proper height adjustment */
    vertical-align: middle; /* Align it vertically within the button */
    padding: 0; /* Remove default padding */
    font-size: 1.5rem; /* Adjust size as needed */
}
/* password field */
.customfields input {
    position: relative;

}

.customfields .password-eye {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    padding: 0 10px;
    z-index: 2;
}
.password-eye{
    border: 1px solid #D3D3D3;
}


.customfields input .form-control {
    padding-right: 3rem;
}
/* Custom Styles for Company Information Page */
.summary-card {
    background-color: cadetblue;
    color: #f8f9fa;
}

/* .badge-custom {
    background-color: #28a745;
    color: #f8f9fa;
} */


.company-link {
    color: #17a2b8;
}

.company-link:hover {
    text-decoration: underline;
}

.company-slug-group {
    background-color: #495057;
    color: #f8f9fa;
}
/* thank you page */
.thank-you-card {
    border-radius: 15px;
    text-align: center;
    padding: 50px;
    /* margin-top: 100px; */
}

.thank-you-card h1 {
    font-size: 3rem;
    color: #28a745;
}

.thank-you-card p {
    font-size: 1.2rem;
    color: #6c757d;
}

.thank-you-icon {
    font-size: 5rem;
    color: #28a745;
}

.cta-btn {
    background-color: #28a745;
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 1rem;
    margin-top: 20px;
}

.cta-btn:hover {
    background-color: #218838;
}

.table {
    width: 100%;
}

/*   */
.table tr th, .table tr td {
    font-size: 13px !important;
    padding: 4px 12px !important;
    /* text-wrap: nowrap; */
}


/* Media Queries */
/* Collapse button for small screens */
.collapse-btn {
    position: fixed;
    top: 59px;
    left: 0;
    background-color: #343a40;
    z-index: 1050; /* Ensure the button is on top */
    height: 40px;
    width: 100%; /* Full width button */
    text-align: left;
    padding-left: 10px; /* Align text to the left */
}
/* model */
/* .table-responsive {
    overflow-x: unset;
   
} */
#suggestions {
    position: absolute;
    z-index: 1000;
    top: 31px;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background-color: white;
    border: 1px solid #ddd;
    display: none;
}




/* Sidebar overlay when toggled on small screens */
@media (max-width: 767px) {
    .dropdown, .dropdown-center, .dropend, .dropstart, .dropup, .dropup-center {
        position: unset;
    }
    .main-sidebar {
        position: fixed; /* Fixed position for sidebar */
        top: 86px; /* Push below the collapse button */
        left: 0;
        width: 250px; /* Set width */
        z-index: 1040; /* Below collapse button */
        height: calc(100vh - 108px); /* Adjust height to fit screen */
        background-color: #343a40;
        transition: transform 0.3s ease; /* Smooth slide-in */
        transform: translateX(-100%); /* Hidden by default */
    }


    /* Show sidebar when collapsed */
    .main-sidebar.collapse.show {
        transform: translateX(0); /* Slide in */
    }

    #main-content {
        margin-top: 22px;
    }

    /* When the sidebar is shown */
    .main-sidebar.collapse.show + #main-content {
        margin-top: calc(60px + 100%); /* Further push down content */
    }
    .table-responsive {
        overflow-x: auto;
        overflow-y: unset;

       
    }
}










