/* Investors Pages CSS Start */
.document-card {
  border: 1px solid #e5e5e5;
  padding: 15px;
  border-radius: 8px;
  transition: 0.3s ease;
  background: #fff;
}

.pdf-icon {
  font-size: 28px;
  color: #d62828;
}

.title-accent {
  padding: 10px 0;
  border-left: 6px solid #000;
  padding-left: 22px;
  margin: 20px 0px;
}
.title-accent h2 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}
.title-accent p {
  margin: 6px 0 0;
  color: #555;
  font-size: 15px;
}


/* Investors Pages CSS End */


/* Investor Contact Start */
.info-table th {
  width: 25%;
  font-weight: 600;
  background: #f7f7f7;
  font-family: 'Figtree', sans-serif;
}
.section-heading {  
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  border-radius: 4px 4px 0 0;
  border:none;
  font-family: 'Figtree', sans-serif;
  text-align: center;
  text-transform: uppercase;
}

/* Investor Contact End */


/* Popup Css start */
/* Overlay */
.disclaimer-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.55)
  );
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Card */
.disclaimer-box {
  background: #ffffff;
  max-width: 920px;
  width: 92%;
  max-height: 88vh;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  padding: 0;
  overflow: hidden;
  animation: modalFadeUp 0.35s ease;
}

/* Header */
.disclaimer-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  padding: 22px 20px 10px;
  border-bottom: 1px solid #eee;
}

/* Subheading */
.disclaimer-subtitle {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #555;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

/* Content */
.disclaimer-content {
  padding: 24px 30px;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  overflow-y: auto;
  max-height: 48vh;
}

/* Scrollbar (Webkit) */
.disclaimer-content::-webkit-scrollbar {
  width: 6px;
}
.disclaimer-content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 6px;
}

/* Footer */
.disclaimer-actions {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  background: #fafafa;
}

/* Buttons */
.btn-confirm:disabled {
  background: #999;
  cursor: not-allowed;
  transform: none;
}

/* Animation */
@keyframes modalFadeUp {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .disclaimer-title {
    font-size: 22px;
  }

  .disclaimer-content {
    font-size: 13px;
    padding: 20px;
    max-height: 55vh;
  }

  .disclaimer-actions {
    flex-direction: column-reverse;
    gap: 12px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* Popup Css End */
