* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand-primary-color: #2266ff;
  --text-primary: #37393f;
  --text-secondary: #6e7079;
  --border: #e6ebf1;
  --green-color: #519c66;
  --red-color: #ff6363;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--text-primary);
  background-color: #f9f9fb !important;
  background-image: url('/assets/images/bg.svg') !important;
  background-position: top left !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  background-size: 100% auto !important;
  padding: 40px;
  min-width: 320px;
  overflow-y: auto;
}

.preloaderMain {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 80px);
  min-height: 400px;
}

.preloaderImage {
  width: 80px;
  height: 80px;
  animation: fallbackLogoSpin 2s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes fallbackLogoSpin {
  0% {
    transform: rotate(0deg);
  }
  85% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* common css */
.background {
  min-height: 100vh;
  padding: 40px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Pill Styles */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 6px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  text-align: center;
  white-space: nowrap;
}
.liveStatusPill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  font-size: 13px;
  font-weight: 400;
  border-radius: 99px;
  text-align: center;
  white-space: nowrap;
  background-color: #dcf2e2;
  color: #0c8b12;
}

/* Variants for different statuses */
.pill-critical {
  background-color: #f6faff;
  color: #898ca1;
  border: 1px solid #aab4c9;
}

.pill-high {
  background-color: #f6faff;
  color: #898ca1;
  border: 1px solid #aab4c9;
}

.pill-medium {
  background-color: #f6faff;
  color: #898ca1;
  border: 1px solid #aab4c9;
}

.pill-low {
  background-color: #effff4;
  color: #1d9b3a;
  border: 1px solid #95dc9c;
}

.pill-dark {
  background-color: #f6faff;
  color: #898ca1;
  border: 1px solid #aab4c9;
}

.pill-link {
  background-color: #f0f0f3;
  border-radius: 99px;
  padding: 6px 12px;
  text-decoration: none;
  outline: none;
  display: flex;
  flex-wrap: wrap;
}
h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--text-primary);
}
h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

h4 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 48px;
  border: 1px solid var(--border);
}
.iconify {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
a {
  color: var(--brand-primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: darken(var(--brand-primary-color), 10%);
}

/*trust status related css */
#trustStatus {
  display: none;
}
.status {
  max-width: 1100px;
  margin: 0 auto;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 10px;
  width: '100%';
}

/* trust details related css */
#companyDetailsSection {
  display: none;
  flex-direction: column;
}
#companyDetailsSection .content h1 {
  max-width: 100%;
}
#companyDetailsSection .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
}
#companyDetailsSection .logo-name-main {
  display: flex;
  align-items: center;
  gap: 15px;
}
#companyDetailsSection .logo-name-main .logo-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 70px;
  max-width: 140px;
}
#companyDetailsSection .logo-name-main .logo-main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
#companyDetailsSection .logo-name-main .fallback-logo-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 70px;
  max-width: 140px;
}
#companyDetailsSection .logo-name-main .fallback-logo-main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

#companyDetailsSection .company-name {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
  position: relative;
  padding-left: 15px;
  line-height: 1.5;
}

#companyDetailsSection .company-name:before {
  content: '';
  height: 24px;
  width: 3px;
  background-color: #bec0cb;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

#companyDetailsSection .links {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

#companyDetailsSection .policy-link,
#companyDetailsSection .email-link {
  color: var(--brand-primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  transition: color 0.3s;
  font-weight: 500;
}
#companyDetailsSection .policy-link .iconify,
#companyDetailsSection .email-link .iconify {
  width: 22px;
  height: 22px;
  color: var(--brand-primary-color);
}

#companyDetailsSection .policy-link:hover,
#companyDetailsSection .email-link:hover {
  color: var(--brand-primary-color);
}

#companyDetailsSection .detailsHeadingMain {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#companyDetailsSection .detailsHeadingMain h1 {
  margin-bottom: 0px;
}
#companyDetailsSection .detailsHeadingMain h2 {
  margin-bottom: 20px;
}

#companyDetailsSection .intro-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#companyDetailsSection .intro {
  margin-bottom: 20px;
  white-space: pre-wrap;
}

#companyDetailsSection .show-more-btn {
  font-size: 12px;
  color: var(--brand-primary-color);
  background: transparent;
  border: none;
  cursor: pointer;
  margin-top: 8px;
}

/* compliance related css */
#compliancesSection {
  display: none;
  flex-direction: column;
}
#compliancesSection .content h2 {
  max-width: 100%;
}
#compliancesSection .cert-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(calc(25% - 20px), 1fr));
}
#compliancesSection .cert-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
#compliancesSection .cert-name-title-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#compliancesSection .cert-name-title-main .cert-name {
  margin: 0px;
  text-align: center;
}
#compliancesSection .cert-name-title-main .cert-title-main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
}
#compliancesSection .cert-name-title-main .cert-title {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  margin: 0px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

#compliancesSection .cert-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
#compliancesSection .cert-item .cert-item-img-main {
  display: flex;
  width: 120px;
  height: 105px;
  justify-content: center;
}
#compliancesSection .cert-item .cert-item-img-main img {
  width: 100%;
  max-width: 105px;
}
/* controls related css */
#controlsSection {
  display: none;
  flex-direction: column;
}
#controlsSection .content h2 {
  max-width: 100%;
}

#controlsSection .controls-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(calc(33.33% - 20px), 1fr));
}

#controlsSection .control-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-sizing: border-box;
}
#controlsSection .control-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
#controlsSection .control-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
#controlsSection .control-header .iconify {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--text-primary);
}
#controlsSection .control-header .control-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}
#controlsSection .control-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#controlsSection .control-details .control-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 100%;
  color: var(--text-secondary);
}
#controlsSection .control-list-item {
  display: flex;
  gap: 8px;
  align-items: center;
}

#controlsSection .control-list-item-more {
  display: flex;
  font-size: 12px;
  font-weight: 400;
  color: var(--green-color);
  align-items: center;
  line-height: initial;
  margin-top: 8px;
}

#controlsSection .control-item-last {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
#controlsSection .control-item-last .line1 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}
#controlsSection .control-item-last .line2 {
  font-size: 12px;
  font-weight: 400;
  color: var(--brand-primary-color);
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
#controlsSection .control-item-last .line2:hover {
  text-decoration: underline;
}

#showAllControls {
  cursor: pointer;
}
/* policy related css */
#policiesDocumentsSection {
  display: none;
  flex-direction: column;
}
#policiesDocumentsSection .headingAndRequestMain {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#policiesDocumentsSection .content h2 {
  max-width: 100%;
}
#policiesDocumentsSection .policies-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(calc(33.33% - 20px), 1fr));
}
#policiesDocumentsSection .policy-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-sizing: border-box;
}
#policiesDocumentsSection .policy-item:hover,
#policiesDocumentsSection .policy-item-last:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
#policiesDocumentsSection .policy-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
#policiesDocumentsSection .policy-icon {
  width: 41px;
  height: 41px;
  flex-shrink: 0;
}
#policiesDocumentsSection .policy-text {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-primary);
}
#policiesDocumentsSection .policy-item-row .iconify {
  margin-left: auto;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
#policiesDocumentsSection .policy-item-last .policy-more-link {
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#policiesDocumentsSection .policy-item-last .line1 {
  font-size: 16px;
  font-weight: 700;
}
#policiesDocumentsSection .policy-item-last .line2 {
  font-size: 12px;
  font-weight: 400;
  color: var(--brand-primary-color);
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
#policiesDocumentsSection .policy-item-last .line2:hover {
  text-decoration: underline;
}
#showAllPolicies {
  cursor: pointer;
}
/* vendor related css */
#vendorsSection {
  display: none;
  flex-direction: column;
}

#vendorsSection .content h2 {
  max-width: 100%;
}

#vendorsSection .vendors-container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

#vendorsSection .vendor-item {
  display: flex;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  flex: 1;
  min-width: 360px;
}

#vendorsSection .vendor-image-main {
  display: flex;
  width: 32px;
  align-items: flex-start;
}
#vendorsSection .vendor-img {
  max-width: 100%;
}
#vendorsSection .vendor-details-main {
  display: flex;
  justify-content: space-between;
  flex: 1;
  gap: 24px;
}
#vendorsSection .name-subcat-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
#vendorsSection .name-subcat-main .name {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0px;
  line-height: initial;
}
#vendorsSection .name-subcat-main .subCat {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  margin: 0px;
  line-height: initial;
}
#vendorsSection .vendor-location-main {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}
#vendorsSection .vendor-location-main .location {
  display: flex;
  flex-wrap: wrap;
  margin: 0px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: initial;
}

/* faq related css */
#faqsSection {
  display: none;
  flex-direction: column;
}
#faqsSection .content h2 {
  max-width: 100%;
}

#faqsSection .faqsContent {
  display: flex;
  flex-direction: column;
}
#faqsSection .faqsMain {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

#faqsSection .leftSideFaqs,
#faqsSection .rightSideFaqs {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 360px;
  gap: 24px;
}

#faqsSection .faqItem {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#faqsSection .faqItem .faqQuestion {
  margin-bottom: 0px;
}
#faqsSection .faqItem .faqAnswer {
  font-size: 16px;
  margin-bottom: 0px;
}

/* footer css*/
#footerSection {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
#footerSection .footer-text {
  display: flex;
  margin: 0px;
  font-size: 12px;
  color: #6e7079;
  line-height: inherit;
}
#footerSection .footer-logo {
  display: flex;
  width: 70px;
  height: 18px;
}
#footerSection .footer-logo a {
  display: initial;
}
#footerSection .footer-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* scroll to section fab related css*/
/** scroll to section related */
#scrollToTopActionSectionMain {
  display: none;
}
#scrollToTopActionMenu {
  display: none;
}

.fab-main {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: auto;
  height: auto;
}
.fab {
  background-color: var(--brand-primary-color);
  color: #ffffff !important;
  border: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  border-radius: 99px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.3s;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.fab:hover {
  background-color: #1a52cc;
  box-shadow: 0 6px 18px rgba(34, 102, 255, 0.4);
}
.fab-menu {
  position: fixed;
  bottom: 100px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 1000;
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.fab-menu .scrollToSectionACtionItem {
  color: var(--brand-primary-color);
  background-color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  padding: 6px 16px;
  border-radius: 99px;
  transition: background-color 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  white-space: nowrap;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  gap: 10px;
}

.fab-menu .scrollToSectionACtionItem:hover {
  background-color: rgba(34, 102, 255, 0.2);
}

@media (max-width: 1024px) {
  #compliancesSection .cert-container {
    grid-template-columns: repeat(auto-fill, minmax(calc(33.33% - 20px), 1fr));
  }

  #controlsSection .controls-container {
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 20px), 1fr));
  }
  #policiesDocumentsSection .policies-container {
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 20px), 1fr));
  }
}

@media (max-width: 900px) {
  #companyDetailsSection .header {
    gap: 10px;
  }
  #companyDetailsSection .links {
    gap: 10px;
  }
  #compliancesSection .cert-container {
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 20px), 1fr));
  }
}

/** section wise media query */
@media (max-width: 768px) {
  body {
    padding: 16px;
    font-size: 15px;
  }
  h1 {
    font-size: 36px;
  }
  p {
    font-size: 15px;
  }
  .card {
    padding: 32px;
  }
  #companyDetailsSection .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  #companyDetailsSection .logo-name-main {
    flex-wrap: wrap;
  }
  #companyDetailsSection .links {
    gap: 10px;
  }
  #companyDetailsSection .intro {
    margin-bottom: 0px;
  }

  #vendorsSection .vendors-container {
    flex-direction: column;
  }
  #vendorsSection .vendor-item {
    min-width: 100%;
    max-width: 100%;
  }
  #vendorsSection .vendor-location-main {
    min-width: 100%;
  }
  #vendorsSection .vendor-details-main {
    justify-content: initial;
    gap: 10px;
    flex-direction: column;
  }
  #vendorsSection .name-subcat-main .subCat {
    font-size: 15px;
  }
  #faqsSection .faqsMain {
    flex-direction: column;
  }
  #faqsSection .leftSideFaqs,
  #faqsSection .rightSideFaqs {
    min-width: auto;
    max-width: 100%;
  }
  #faqsSection .faqItem .faqAnswer {
    font-size: 15px;
  }

  .modal-body {
    padding: 0px 28px 28px 28px;
  }
}

@media screen and (max-width: 767px) {
  .card {
    padding: 20px;
  }
  #companyDetailsSection .header {
    gap: 16px;
  }
  #companyDetailsSection .logo-name-main {
    gap: 8px;
  }

  #compliancesSection .cert-container {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% - 20px), 1fr));
  }
  #controlsSection .controls-container {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% - 20px), 1fr));
  }

  #policiesDocumentsSection .policies-container {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% - 20px), 1fr));
  }
  .fab-menu {
    bottom: 80px;
  }
}

/** * Error Page Styles and media query */
/* error css */
#errorSection {
  display: none;
  flex-direction: column;
  min-height: 400px;
  height: calc(100vh - 160px);
  justify-content: center;
  align-items: center;
}
#errorSection .errorMainContainer {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
#errorSection .errorMainContainer .errorMain {
  display: flex;
  padding: 20px;
  border-radius: 16px;
  gap: 20px;
  border: 1px solid var(--border);
  box-sizing: border-box;
  background-color: #ffffff;
  flex-wrap: wrap;
}
#errorSection .errorMainContainer .errorImgMain {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 375px;
}
#errorSection .errorMainContainer .errorImgMain img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
#errorSection .errorMainContainer .errorTextMain {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 375px;
}
#errorSection .errorMainContainer .errorHeading {
  margin-bottom: 12px;
  font-weight: 400;
}
#errorSection .errorMainContainer .errorSubHeading {
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--text-primary);
}
#errorSection .errorMainContainer .errorText {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

/** media query */
@media (max-width: 900px) {
  #errorSection .errorMainContainer .errorImgMain {
    width: auto;
    flex: 1;
  }
  #errorSection .errorMainContainer .errorTextMain {
    width: auto;
    flex: 1;
  }
}
@media (max-width: 650px) {
  #errorSection .errorMainContainer .errorMain {
    flex-direction: column;
    align-items: center;
  }
  #errorSection .errorMainContainer .errorImgMain {
    width: 100%;
    max-width: 375px;
  }
  #errorSection .errorMainContainer .errorTextMain {
    width: 100%;
    align-items: center;
  }
  #errorSection .errorMainContainer .errorText {
    text-align: center;
  }
}

/* modal css*/
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  justify-content: center; /* Center modal content */
  align-items: center; /* Center modal content */
}
.modal-content-main {
  background-color: #fefefe;
  border: 1px solid #e6ebf1;
  width: 90%; /* Could be more or less, depending on screen size */
  border-radius: 8px;
  max-width: 600px;
  box-sizing: border-box; /* Include padding and border in width calculations */
  height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}
.modal-header {
  padding: 10px;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 2;
  border-radius: 8px 8px 0 0;
}
.modal-body {
  padding: 0px 40px 40px 40px;
  overflow-y: auto; /* Enable vertical scrolling */
  flex: 1; /* Allow the body to take up remaining space */
}
.close {
  color: #aaa;
  float: right;
  font-weight: bold;
  display: flex;
}
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.no-scroll {
  overflow: hidden; /* Disable scrolling */
}

/* allControlsContent */
.allControlsContent {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.allControlsContent h2 {
  margin-bottom: 0px;
}
.allControlsContent .modal-controls-container {
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  flex-direction: column;
}
.allControlsContent .modal-controls-container .modal-control-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.allControlsContent .modal-controls-container .modal-control-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-control-item-header .iconify {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--text-primary); /* Use text-primary color */
}
.allControlsContent
  .modal-controls-container
  .modal-control-item-header
  .modal-control-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}
.allControlsContent .controlNameListMain {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.allControlsContent .controlNameListItem {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-left: 2px;
}
.allControlsContent .controlNameListItem .controlName {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 100%;
  color: var(--text-secondary);
}

.allControlsContent .controlNameListItem .iconify {
  flex-shrink: 0;
}

/* policy modal content css*/
.allPoliciesContent {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.allPoliciesContent h2 {
  margin-bottom: 0px;
}
.allPoliciesContent .modal-policies-container {
  display: flex;
  gap: 20px; /* Space between cards */
  justify-content: flex-start; /* Align cards to the left */
  flex-direction: column;
}

.allPoliciesContent .policyNameListMain {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.allPoliciesContent .policyNameListItem {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
.allPoliciesContent .policyNameListItem .policyNameIconMain {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 1;
}
.allPoliciesContent .policyNameListItem .policyNameIconMain .policyIcon {
  height: 41px;
  width: 41px;
}
.allPoliciesContent .policyNameListItem .policyNameIconMain .policyName {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-primary);
}
.allPoliciesContent .iconify {
  flex-shrink: 0;
}
