/* Custom styles for the Soluprov landing page */

/* Modal overlay */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 50;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

/* Modal content container */
.modal-content {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

/* Show the modal when active */
.modal.active {
  display: flex;
}

/* Tab styling helpers */
.active-tab {
  background-image: linear-gradient(to right, #0B5FFF, #00BFA6);
  color: #ffffff;
}

/* Hidden tab content */
.tab-content.hidden {
  display: none;
}

/* Contact alert messages */
#contact-alert {
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
}
#contact-alert.success {
  background-color: #dcfce7;
  border: 1px solid #4ade80;
  color: #065f46;
}
#contact-alert.info {
  background-color: #eff6ff;
  border: 1px solid #60a5fa;
  color: #1e3a8a;
}