/* Custom CSS for finer control and animations */
body {
  font-family: "EuclidCircularA", "Inter", sans-serif; /* Prioriza EuclidCircularA */
  /*background-color: #f3f4f6; /* Light gray background, similar to Kabum */
  color: #1a202c; /* Dark text */
}
.btn-primary {
  background-color: var(--color-enterprise-blue1); /* Dark Black from Veed.io */
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.btn-primary:hover {
  background-color: var(--color-enterprise-blue2); /* Slightly darker black on hover */
}
.pmred1{
  color: var(--color-enterprise-red1);
}
.pmred2{
  color: var(--color-enterprise-red2);
}
.pmblue1{
  color: var(--color-enterprise-red1);
}
.pmblue2{
  color: var(--color-enterprise-red2);
}

.btn-secondary {
  background-color: var(
    --color-enterprise-light-gray
  ); /* Light Gray from Veed.io */
  color: var(--color-enterprise-black); /* Dark text for contrast */
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.btn-secondary:hover {
  background-color: #dcdcdc; /* Slightly darker light gray on hover */
}
.card {
  /*background-color: white; /* White background for cards */
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.modal {
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.show {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background-color: #80808080;
  padding: 2rem;
  border-radius: 1rem;
  width: 90%;
  max-width: 600px;
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.modal.show .modal-content {
  transform: translateY(0);
  opacity: 1;
}
.close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #1a202c;
  font-size: 1.5rem;
  cursor: pointer;
}
/* Custom checkbox styling */
input[type="checkbox"],
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--color-enterprise-black); /* Dark Black border */
  border-radius: 0.25rem;
  background-color: #f3f4f6; /* Light background */
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
input[type="checkbox"]:checked,
input[type="radio"]:checked {
  background-color: var(--color-enterprise-black); /* Dark Black when checked */
  border-color: var(--color-enterprise-black);
}
input[type="checkbox"]:checked::after {
  content: "✔"; /* Checkmark character */
  font-size: 0.8rem;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
input[type="radio"] {
  border-radius: 50%; /* Make radio buttons round */
}
input[type="radio"]:checked::after {
  content: ""; /* No checkmark for radio, just a dot */
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.star-rating .star {
  color: var(--color-enterprise-black); /* Dark Black for stars */
}
.star-rating .star.empty {
  color: #d1d5db; /* Gray for empty stars */
}
/* Page specific styles */
.page-section {
  display: none; /* Hidden by default */
}
.page-section.active {
  display: block; /* Show active page */
}
.page-section.flex {
  display: flex; /* Show active page flex */
}
.page-section.hidden {
  display: none; /* Show active page flex */
}

/* Custom fonts from Veed.io */
@font-face {
  font-display: swap;
  font-family: EuclidCircularA;
  font-style: normal;
  font-weight: 300;
  src: url(https://static-assets.veed.io/fonts/Euclid%20Circular%20A/Light.woff2)
      format("woff2"),
    url(https://static-assets.veed.io/fonts/Euclid%20Circular%20A/Light.woff)
      format("woff");
}
@font-face {
  font-display: swap;
  font-family: EuclidCircularA;
  font-style: normal;
  font-weight: 400;
  src: url(https://static-assets.veed.io/fonts/Euclid%20Circular%20A/Regular.woff2)
      format("woff2"),
    url(https://static-assets.veed.io/fonts/Euclid%20Circular%20A/Regular.woff)
      format("woff");
}
@font-face {
  font-display: swap;
  font-family: EuclidCircularA;
  font-style: bold;
  font-weight: 500;
  src: url(https://static-assets.veed.io/fonts/Euclid%20Circular%20A/Medium.woff2)
      format("woff2"),
    url(https://static-assets.veed.io/fonts/Euclid%20Circular%20A/Medium.woff)
      format("woff");
}
@font-face {
  font-display: swap;
  font-family: EuclidCircularA;
  font-style: bold;
  font-weight: 600;
  src: url(https://static-assets.veed.io/fonts/Euclid%20Circular%20A/Semibold.woff2)
      format("woff2"),
    url(https://static-assets.veed.io/fonts/Euclid%20Circular%20A/Semibold.woff)
      format("woff");
}
@font-face {
  font-display: swap;
  font-family: EuclidCircularA;
  font-style: bold;
  font-weight: 700;
  src: url(https://static-assets.veed.io/fonts/Euclid%20Circular%20A/Bold.woff2)
      format("woff2"),
    url(https://static-assets.veed.io/fonts/Euclid%20Circular%20A/Bold.woff)
      format("woff");
}
@font-face {
  font-display: swap;
  font-family: SwissNow;
  font-style: normal;
  font-weight: 300;
  src: url(https://static-assets.veed.io/fonts/SwissNow/SwissNow-Light.woff2)
    format("woff2");
}
@font-face {
  font-display: swap;
  font-family: SwissNow;
  font-style: normal;
  font-weight: 400;
  src: url(https://static-assets.veed.io/fonts/SwissNow/SwissNow-Regular.woff2)
    format("woff2");
}
@font-face {
  font-display: swap;
  font-family: SwissNow;
  font-style: normal;
  font-weight: 500;
  src: url(https://static-assets.veed.io/fonts/SwissNow/SwissNow-Medium.woff2)
    format("woff2");
}

/* Veed.io color variables (subset for header styling) */
:root {
  --color-enterprise-gray: oklch(73.8% 0 0); /* Equivalent to #aaaaaa */
  --color-enterprise-light-gray: oklch(
    94.8% 0.002 197.1
  ); /* Equivalent to #eceeee */
  --color-enterprise-black: #0e2436; /* Equivalent to #323232 */
  --color-enterprise-blue1: #0e2436;
  --color-enterprise-red1: #e23d5c;
  --color-enterprise-blue2: #1e6887;
  --color-enterprise-red2: #77253b;

}

/* Specific styles for header elements to match Veed.io */
.font-swissnow {
  font-family: "SwissNow", sans-serif;
}
.text-enterprise-black {
  color: var(--color-enterprise-black);
}
.bg-enterprise-black {
  background-color: var(--color-enterprise-black);
}
.bg-enterprise-lightGray {
  background-color: var(--color-enterprise-light-gray);
}
.to-enterprise-gray\/10 {
  --tw-gradient-to: hsla(0, 0%, 67%, 0.1) var(--tw-gradient-to-position);
}
.from-enterprise-gray\/5 {
  --tw-gradient-from: hsla(0, 0%, 67%, 0.05) var(--tw-gradient-from-position);
}
