
h1 {
    margin-top: 3%;
    text-indent: 0;
    text-align: center;
    margin-bottom: 2%;
    color: #2c3e50;
    font-weight: 600;
    border-bottom: 2px solid #1c87c9;
    padding-bottom: 8px;
}

h2 {
    color: #2c3e50;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 4px solid #1c87c9;
    text-align: left;
}

.intro-text {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #333;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.intro-text b {
    color: #1c87c9;
}



a {
    background-color: #1c87c9;
    border: none;
    color: white;
    padding: 20px 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    margin: 25px 4%;
    cursor: pointer;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
}

figcaption {
    margin-top: 5px;
    text-align: center;  /* Center the text horizontally */
    font-size: 14px;
    font-weight: 500;
    color: #444;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: auto;  /* Take the width of its content */
    max-width: 100%;  /* Ensure it doesn't exceed the container width */
    margin-bottom: 5px;
}

hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(28, 135, 201, 0.75), rgba(0, 0, 0, 0));
    margin: 20px 0;
}

.text_center {
    max-width: fit-content;
    margin-inline: auto;
}


.category-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/*.image-container {*/
/*    transition: transform 0.2s;*/
/*    margin-bottom: 15px;*/
/*    text-align: center;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*}*/


.image-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap; /* optional for responsive stacking */
  margin-top: 10px;
  margin-bottom: 10px;
}

.image-block {
  text-align: center;
}

.image-container:hover {
    transform: scale(1.02);
}




.bigButton {
    background-color: #1c87c9;
    border: none;
    color: white;
    padding: 20px 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    margin: 25px 4%;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.bigButton:hover {
    background-color: #1976b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

.btn-primary {
    background-color: #1c87c9;
    border-color: #1c87c9;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background-color: #1976b3;
    border-color: #1976b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

.helptext {
    display: none;
}



.slidecontainer {
  width: 100%; /* Width of the outside container */
}

/* The slider itself */
.slider {
  display: block;
  margin-left: auto;
  margin-right: auto;
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 75%; /* Full-width */
  height: 25px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #4CAF50; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #4CAF50; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

/* Checkbox alignment styles */
.form-check {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
  /* Allow parent element to control text alignment */
}

.form-check-input {
  margin-right: 10px !important;
  position: static !important;
  transform: scale(1.5);
  width: 20px !important;
  min-width: 20px !important;
}

.form-check-label {
  font-size: 1.5rem;
  margin-left: 0 !important;
}
