@tailwind base;
@tailwind components;
@tailwind utilities;
.scrollbar {
  scrollbar-width: thin; /* For Firefox */
  scrollbar-color: #6b7280 #f3f4f6; /* For Firefox */
}
section {
  scroll-margin-top: 120px; /* Adjust based on header height */
}

.content ul li{
  position: relative;
}
.content ul li:before{
  content: '●';
  margin-right: 10px;
}
body{
  font-family: "Ridley Grotesk";
  color: #2f4858;
  font-weight: 400;
  font-size:1rem;
}

.scrollbar::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
  height: 8px; /* Height of the scrollbar */
}

.scrollbar::-webkit-scrollbar-track {
  background: #f3f4f6; /* Scrollbar track color */
}

.scrollbar::-webkit-scrollbar-thumb {
  background-color: #6b7280; /* Scrollbar thumb color */
  border-radius: 4px; /* Rounded corners */
  border: 2px solid #f3f4f6; /* Add padding around thumb */
}

.scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: #4b5563; /* Darker color when hovered */
}

@layer base {
  .container {
    max-width: 100%; /* Default max-width */
    margin: 0 auto;
  }
  /*mobile sidebar*/
  #header {
    top: 56px;
  }
  #header.isSticky {
    position: fixed !important;
    top: 0;
    background: #fff;
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  #mobile_navbar {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
  }
  #mobile_navbar.active_navbar {
    transform: translateX(0%);
    visibility: visible;
    opacity: 1;
  }
  .overlay {
    display: none;
  }
  /*mobile sidebar*/
  .transition-custom {
    transition: 0.3s ease-in-out;
  }
  /*modal*/
  .customModalContainer {
    display: none;
  }
  .customModalContainer.show {
    display: flex;
  }
  .faq_title.active i {
    transform: rotate(180deg);
  }
  .transition-custom {
    transition: all 0.3s ease-in-out;
  }
  .faq_content {
    display: none; /* Hide all FAQ content by default */
  }

  label[data-selected="true"] {
    background-color: #e9e6e6 !important;
    font-weight: bold;
  }
  label[data-selected="true"]:hover {
    background-color: #ece9e9; /* Hover effekti */
  }

  @font-face {
    font-family: "Ridley Grotesk";
    src: url("/assets/fonts/Ridley Grotesk Black.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
  }

  @font-face {
    font-family: "Ridley Grotesk";
    src: url("/assets/fonts/Ridley Grotesk Black Italic.otf") format("opentype");
    font-weight: 900;
    font-style: italic;
  }

  @font-face {
    font-family: "Ridley Grotesk";
    src: url("/assets/fonts/Ridley Grotesk Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
  }

  @font-face {
    font-family: "Ridley Grotesk";
    src: url("/assets/fonts/Ridley Grotesk Bold Italic.otf") format("opentype");
    font-weight: 700;
    font-style: italic;
  }

  @font-face {
    font-family: "Ridley Grotesk";
    src: url("/assets/fonts/Ridley Grotesk ExtraBold.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
  }

  @font-face {
    font-family: "Ridley Grotesk";
    src: url("/assets/fonts/Ridley Grotesk ExtraBold Italic.otf")
      format("opentype");
    font-weight: 800;
    font-style: italic;
  }

  @font-face {
    font-family: "Ridley Grotesk";
    src: url("/assets/fonts/Ridley Grotesk Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
  }

  @font-face {
    font-family: "Ridley Grotesk";
    src: url("/assets/fonts/Ridley Grotesk Italic.otf") format("opentype");
    font-weight: 400;
    font-style: italic;
  }

  @font-face {
    font-family: "Ridley Grotesk";
    src: url("/assets/fonts/Ridley Grotesk Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
  }

  @font-face {
    font-family: "Ridley Grotesk";
    src: url("/assets/fonts/Ridley Grotesk Medium Italic.otf")
      format("opentype");
    font-weight: 500;
    font-style: italic;
  }

  @font-face {
    font-family: "Ridley Grotesk";
    src: url("/assets/fonts/Ridley Grotesk SemiBold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
  }

  @font-face {
    font-family: "Ridley Grotesk";
    src: url("/assets/fonts/Ridley Grotesk SemiBoldItalic.otf")
      format("opentype");
    font-weight: 600;
    font-style: italic;
  }

  @font-face {
    font-family: "Ridley Grotesk";
    src: url("/assets/fonts/Ridley Grotesk Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
  }

  @font-face {
    font-family: "Ridley Grotesk";
    src: url("/assets/fonts/Ridley Grotesk Light Italic.otf") format("opentype");
    font-weight: 300;
    font-style: italic;
  }

  @font-face {
    font-family: "Ridley Grotesk";
    src: url("/assets/fonts/Ridley Grotesk Thin.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
  }

  @font-face {
    font-family: "Ridley Grotesk";
    src: url("/assets/fonts/Ridley Grotesk Thin Italic.otf") format("opentype");
    font-weight: 200;
    font-style: italic;
  }

  @font-face {
    font-family: "Ridley Grotesk";
    src: url("/assets/fonts/Ridley Grotesk UltraLight.otf") format("opentype");
    font-weight: 100;
    font-style: normal;
  }

  @font-face {
    font-family: "Ridley Grotesk";
    src: url("/assets/fonts/Ridley Grotesk UltraLight Italic.otf")
      format("opentype");
    font-weight: 100;
    font-style: italic;
  }

  /*modal*/
  @media (min-width: 1200px) {
    .container {
      max-width: 1142px !important; /* Custom max-width for small screens */
    }
  }
}
