/* Sourcing */
.dashboard-container {
    min-height: 100vh;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
}
.left-company-logo .logo {
    font-family: "Nunito", sans-serif;
    font-weight: bold;
    color: #000;
    line-height: 1;
    text-align: left;
    margin-bottom: 20px;
    font-size: 30px;
}
.dashboard-left-sec {
    flex: 0 0 16%;
    padding: 10px;
    border-right: 2px solid #e0e0e3;
    transition: all 0.3s ease; /* smooth transition */
    overflow: hidden; /* hide content when minimized */
}
.dashboard-left-sec.minimized {
  flex: 0 0 0px;   /* collapsed width */
  padding: 10px 0;
  /* border-right: 2px solid transparent; */
}
.dashboard-right-sec {
    flex: 1;
    padding: 10px;
    min-width: 0;
}
.toggle-btn {
    background: #fff;
    border: none;
    outline: none;
    padding: 5px 5px;
    border-radius: 0 5px 5px 0;
    position: absolute;
    top: 53px;
    left: 0;
}
.toggle-btn i {
    transition: all 0.3s ease; /* smooth transition */
    rotate: 180deg;
}
.toggle-btn.minimized i {
    rotate: 0deg;
}


.left-nav ul {
    margin: 0;
    padding: 0;
}
.left-nav ul li {
    list-style-type: none;
    text-align: left;
}
.left-nav ul li a {
    display: inline-block;
    padding: 10px 10px 10px 0;
    color: #abadba !important;
    font-size: 16px;
}
.left-nav ul li a.active {
    color: #000 !important;
}
.dashboard-title {
    font-size: 26px;
    font-weight: 500;
}
.header-card-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.header-card-row > div {
    position: relative;
    padding: 2px 8px;
    border-radius: 10px;
    background: linear-gradient(135deg, #6a5af9, #8e82ff);
    border: 2px solid transparent;
    color: #fff;
    font-weight: 600;
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 16px rgba(106,90,249,0.3);
    cursor: pointer;
    font-size: 14px;
}
.header-card-row > div.active {
    border: 2px solid #6a5af9;
    background: #fff;
    color: #6a5af9;
}
.section-title {
    font-size: 17px;
    font-weight: 500;
}
.section-title-desc{
    font-size: 12px;
    margin-left: 10px;
}
.left-company-logo img {
    max-height: 80px;
}
.left-company-logo {
    font-size: 16px;
}
.activities {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.activity-card {
  flex: 1;
  min-width: 160px;
  background: #ffffff;
  color: #333;
  padding: 15px;
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  max-width: calc(33.33% - 20px);
}

.activity-card .icon {
  font-size: 28px;
  margin-bottom: 8px;
  color: #6a5af9; /* subtle brand accent */
}

.activity-card .title {
  font-size: 16px;
  font-weight: 600;
}

.activity-card .subtitle {
  font-size: 13px;
  opacity: 0.8;
}

/* Hover / Active State */
.activity-card:hover,
.activity-card.active {
  transform: translateY(-5px);
  border-color: #6a5af9;
  box-shadow: 0 8px 20px rgba(106, 90, 249, 0.2);
}
.sticky-left-bar {
    position: sticky;
    top: 50px;
}
.section-title-strap {
    background: #e2e2fb;
    padding: 0 10px;
    border-left: 5px solid #7d6ffc;
    border-radius: 5px;
    margin-bottom: 10px;
}
.summary-section:not(.active), .buyer-tools-section:not(.active), .seller-tools-section:not(.active) , .vendor-listing-form:not(.active) , .vendor-responsible-form:not(.active) , .enquiry-list:not(.active) {
    display: none;
}
.mobile-sec {
    display: none;
}
.listing-form-title {
    font-size: 22px;
}
.listing-form label {
    font-size: 14px;
}
.vendor-responsible-form label {
    font-size: 14px;
}

@media screen and (max-width:875px) {
    .mobile-sec {
        display: block;
    }
    .dashboard-left-sec {
        position: fixed;
        top: 0;
        left: -215px;
        width: 215px;
        height: 100vh;
        z-index: 999;
        background: #f1f1fb;
        transition: left 0.3s ease-in-out;
    }
    .dashboard-left-sec.opened {
        left: 0;
    }
    .dashboard-right-sec  {
        padding-left: 10px !important;
        max-width: 100%;
    }
    .section-title {
        font-size: 17px;
    }
    .header-card-row {
        gap: 10px;
    }
    .toggle-btn {
        display: none;
    }
    /* .header-card-row > div {
        padding: 10px 40px 10px 10px;
    } */
}
.vendor-listing-form .input-section , .vendor-responsible-form .input-section {
    border: 1px solid #dadce0;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 1px -1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 1px 3px 0 rgba(0, 0, 0, .12);
    -webkit-transition: box-shadow .28s cubic-bezier(.4, 0, .2, 1);
}
.vendor-listing-form label , .vendor-responsible-form label {
    margin-bottom: 0;
}
.text-input {
    border-top: none;
    border-left: none;
    border-bottom: 1px solid #dadce0 !important;
    border-right: none;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 0;
    margin: 0 !important;
    min-width: 220px;
    font-size: 13px;
    padding: 4px 12px;
    height: 30px;
}
.text-input.unit {
    min-width: 0;
    width: 110px;
}
.text-input:focus {
    border-bottom: 1px solid #000 !important;
}
.input-section textarea {
    font-size: 13px;
}




.vendor-listing-form .input-section + .input-section {
    margin-top: 20px;
}
.vendor-responsible-form .input-section + .input-section {
    margin-top: 20px;
}
.input-section span.image-valid-note {
    font-size: 12px;
}
.video_link_main {
    font-size: 13px;
}
.custom-control-label::before, .custom-file-label, .custom-select {
    font-size: 13px;
}

/* Label */
.file-upload-group label {
    font-size: 13px;
    display: block;
    margin-bottom: 6px;
    color: #202124;
}

/* Input hidden (styled button instead) */
.file-upload-input {
    display: none;
}

.file-upload-label {
    display: inline-block;
    padding: 5px 8px;
    font-size: 14px;
    border: 1px solid #dadce0;
    border-radius: 6px;
    background: #fff;
    color: #1a73e8;
    cursor: pointer;
    transition: 0.2s ease;
}
.file-upload-label-pdf {
    /* padding: 5px 8px;
    font-size: 14px;
    border: 1px solid #dadce0;
    border-radius: 6px; */
    /* background: #fff; */
    color: #1a73e8;
    /* cursor: pointer;
    transition: 0.2s ease;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center; */
}

.file-upload-label:hover {
    background: #f1f3f4;
}

/* Preview wrapper */
.preview-wrapper {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

/* Preview image */
.preview-wrapper img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border: 1px solid #dadce0;
    border-radius: 6px;
    background: #fff;
}

/* Remove button */
.remove-image {
    cursor: pointer;
    color: #5f6368;
    font-size: 18px;
    position: absolute;
    top: -6px;
    left: 60px;
    background: #fff;
    border-radius: 50%;
    padding: 2px 5px;
    border: 1px solid #dadce0;
    transition: 0.2s;
}
.remove-image:hover {
    background: #f1f3f4;
    color: #d93025;
}

.image-valid-note {
    font-size: 12px;  /* smaller note */
    color: #5f6368;
}

.uploaded-file {
    font-size: 13px;
    color: #1a73e8;
    text-decoration: underline;
    cursor: pointer;
}
.uploaded-file:hover {
    text-decoration: none;
}
.CATALOUGE_title_and_description_clone_div_catelog_company , .CATALOUGE_title_and_description_clone_div_productrange  {
    border: 1px solid #e5e5e5;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    position: relative;
}
.aboutus_description_clone_div_certificate, .aboutus_description_clone_div_team {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    position: relative;
}
.aboutus_description_clone_div_certificate + .aboutus_description_clone_div_certificate, .aboutus_description_clone_div_team + .aboutus_description_clone_div_team {
    border-top: 1px solid #e5e5e5;
    border-radius: 0;
}
.CATALOUGE_title_and_description_clone_div_productrange + .CATALOUGE_title_and_description_clone_div_productrange,
.CATALOUGE_title_and_description_clone_div_catelog_company + .CATALOUGE_title_and_description_clone_div_catelog_company,
.aboutus_description_clone_div_certificate + .aboutus_description_clone_div_certificate, .aboutus_description_clone_div_team + .aboutus_description_clone_div_team {
    margin-top: 15px;
}
.CATALOUGE_title_and_description_clone_div_productrange:has( .removemore_proser_productrange_description),
.aboutus_description_clone_div_certificate:has( .removebtn_certificate), .aboutus_description_clone_div_team:has( .removebtn_team) {
    padding-bottom: 40px;
}
.CATALOUGE_title_and_description_clone_div_catelog_company:has( .removemore_proser_catalogcompany) {

}
.CATALOUGE_title_and_description_clone_div_catelog_company {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.CATALOUGE_title_and_description_clone_div_catelog_company .show_video_text , .CATALOUGE_title_and_description_clone_div_catelog_company .show_video_link {
    flex: 1 0 80%;
}
.CATALOUGE_title_and_description_clone_div_catelog_company > div:first-child {
    flex: 0 0 100%;
}
.CATALOUGE_title_and_description_clone_div_catelog_company input[type='url'] {
    width: 100%;
}
.question-popup .modal-content {
    border-radius: 10px;
}
.question-popup .modal-footer .btn {
    padding: 2px 10px;
    font-size: 12px;
}


.excel-modal .modal-dialog { max-width:430px; }
.excel-card{
border:0; border-radius:18px;
background:#fff;
box-shadow:0 10px 25px rgba(16,24,40,.06),0 2px 6px rgba(16,24,40,.04);
}
.excel-header{
border:0; border-radius:18px 18px 0 0;
background:linear-gradient(120deg, var(--brand), var(--brand-2));
}

/* Vertical layout */
.excel-vertical{ display:flex; flex-direction:column; width:100%;border:1px solid #e6eef5; }
.excel-row:not(.single-col){
display:grid; grid-template-columns:200px 1fr;
align-items:center; border-bottom:1px solid #e6eef5;
}
.excel-row.single-col {
    border-bottom:1px solid #e6eef5;
}
.multiple-col.excel-row {
    grid-template-columns: 200px 1fr 1fr 1fr;
}
.excel-row:last-child {
border-bottom: none;
}
.excel-label{
padding:.6rem 5px;
/* background:#f5f9fc; */
font-size: 13px;
border-right:1px solid #e6eef5; color:#333;height: 100%;
display: flex;align-items: center;
}
.excel-content {
    padding:.6rem 0;
}
.excel-input{
width:100%; padding:.6rem .8rem; border:0; outline:none;
background:#fff; font-size:13px;
}
.excel-input:focus{
background:#fff; border:1px solid var(--brand-2);
box-shadow:0 0 0 2px var(--ring);
}
.multiple-col .excel-input + .excel-input {
    border-left: 1px solid #e6eef5;
}
.excel-modal .modal-footer {
border: 0;
}
.excel-radio {
padding-left: 15px;
font-size: 13px;
width: 100%;
margin-bottom: 0;
display: flex;
align-items: center;
gap: 5px;
margin-bottom: 2px;
}
.excel-content a {
    font-size: 13px;
}
.social-links-sec input {
    font-size: 14px;
}
.single-col .excel-radio {
    font-size: 13px;
}
.modal-title svg {
    flex: 0 0 fit-content;
}
.single-col > span {
    font-size: 14px;
}
.custom-switch {
    padding-left: 0;
    padding-right: 2.25rem;
    font-size: 13px;
}
.custom-switch .custom-control-label::before {
    left: calc(100% + 8px);
    top: 2px
}
.custom-switch .custom-control-label::after {
    left: calc(100% + 10px);
    top:4px;
}
@media screen and (max-width:580px) {
    .multiple-col.excel-row {
        grid-template-columns: 110px 60px 60px 100px;
    }
    .modal-dialog-scrollable .modal-body {
        padding: 0 10px !important;
    }
}
@media screen and (max-width:450px) {
.excel-row {
    grid-template-columns: 170px 1fr;
}
}
.nav-tabs .nav-link {

}
