/*HEADER*/

:root {
  --primary-color: #D6AD60;
  --primary-color-hover: #b69351;
  --success-color: #4cc9f0;
  --background-color: #f8f9fa;
  --card-color: #ffffff;
  --text-color: #333333;
  --border-radius: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}


:root {
  --primary-color: #d6ad60;
  --secondary-color: #3b3b3b;
  --secondary-color-hover: #313030;
  --light-bg: #f8f8f8;
  --light-bg-hover: #e7e5e5;
  --title-font-size: 24px;
  --subtitle-font-size: 18px;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

body {
    padding: 0px;
    margin: 0px;
    /* font-family: 'Raleway', 'Arial', sans-serif; */
    font-family: Arial, sans-serif;
    /* To ensure the footer keeps on the bottom of the page */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
header {
    background-color: #3B3B3B;
    /* Add the blur effect
    filter: blur(8px);
    -webkit-filter: blur(8px);
    */
    /* Full height */
    height: 100%;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: darken;
    /*background-color: rgba(0,0,0, 0.7); /* Black w/opacity/see-through */
}

main {
  flex: 1;
}

#menu {
    box-sizing: border-box;
    padding: 20px 100px;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
}

#websiteLogoContainer {
  width: fit-content;
  height: fit-content;
}

#websiteLogo{
    height: 47px;
    width: 100px;
    /* padding-right: 30px; */
    /* font-size: 30px;
    font-family: Georgia, 'Times New Roman', Times, serif; */
}

#websiteLogo {
  /* width: 150px; Adjust to your desired size */
  transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transition */
}

#websiteLogo:hover {
  transform: scale(1.1); /* Slight zoom effect */
  filter: drop-shadow(5px 5px 10px rgba(109, 109, 109, 0.2)); 
  /* box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); Soft shadow */
}

#rightSideMenu {
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
}

#rightList {
  display: flex;
  align-items: center;
  margin: 0px;
  padding: 0px;
  /* float: right; */
  list-style-type: none;
  /* overflow: hidden; */
  /* margin-top: 26px; */
  /* margin-right: auto; */
  /* height: fit-content; */
}


/* #menu #leftList {
    float: left;
    padding-left: 6px;
    height: fit-content;
    display: flex;
    align-items: center;
} */

/* #leftList{
    float: left;
}

#menu #rightList {
    display: flex;
    align-items: center;
    float: right;
    list-style-type: none;
    overflow: hidden;
    margin-top: 26px;
    margin-right: auto;
    height: fit-content;
}

#rightList{
    float: right;
}

#menu li {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    display: inline-block;
    align-items: center;
}
 */
#menu li a{
  padding: 10px 26px;
  color:#FFFFFF;
  text-decoration: none;
  display: inline-block;
  align-items: center;
  height: 100%; /* Set the height of all the links to 100% */
  transition: 0.3s;
}

#signupBottom {
    background-color: rgba(65,65,65,0);
    color: #FFFFFF;
    border-radius: 40px;
    border: 2px solid white ;
    transition: 0.5s;
}

#signupBottom:hover {
    /*background-color: #283635;*/
    color: black;
    background-color: #FFFFFF;
}

#menu li a:hover{
  /* color: #A48374;*/
  transform: scale(1.1);
  color: #D6AD60;
    
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  /* font-size: 17px; */
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.signin-dropdown-content {
  display: none;
  position: absolute;
  background-color: #3B3B3B;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 2;
}

.signin-dropdown-content a {
  /* float: none; */
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* LANGUAGE PICKER */
/* General Reset */
/* body, ul, li, button {
  margin: 0;
  padding: 0;
  list-style: none;
  background: none;
  border: none;
  font-family: Arial, sans-serif;
} */

/* Language Picker Container */
.language-picker-container {
  position: relative;
  /* top: 20px;
  right: 20px;
  z-index: 1000; */
}

.language-btn {
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  transition: transform 0.2s ease;
  color: #ffffff; /* Neutral text color */
  /* font-size: 17px; */
}

.language-btn:hover {
  transform: scale(1.1);
  color: #ffffff; /* Slightly darker hover effect */
}

/* Dropdown Styling */
.language-dropdown {
  position: absolute;
  top: 40px;
  right: 0;
  width: max-content;
  background: #ffffff; /* Neutral white background */
  border: 1px solid #ccc; /* Subtle border */
  border-radius: 8px; /* Rounded corners for modern look */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  display: none;
  transition: display 0.2s ease;
  /* display: block; */
  padding: 5px 0;
  /* min-width: 50px; */
  z-index: 2; /* Places the text above the overlay */
}

.language-dropdown a{
  text-decoration: none;
}

/* .language-picker-container:hover .language-dropdown {
  display: block;
} */

.language-dropdown.visible {
  display: block;
}
/* Dropdown Icon */
#dropdownIcon{
  display: inline-block;
  transition: transform 0.4s ease; /* Smooth rotation effect */
}

/* Rotated Icon */
#dropdownIcon.rotate {
  transform: rotate(180deg); /* Rotate 180 degrees */
}

.language-option {
  display: flex;
  align-items: center;
  padding: 5px 20px;
  transition: background-color 0.2s ease;
}

.language-option:hover {
  background-color: #ccc;
}
/* 
.language-dropdown li {
  text-align: center;
  padding: 5px 0;
}

.language-dropdown li a {
  text-decoration: none;
  font-size: 20px;
  color: #555; 
  display: block;
  transition: background-color 0.2s ease, color 0.2s ease;
  padding: 5px 10px;
}

.language-dropdown li a:hover {
  background-color: #f2f2f2; 
  color: #333; 
  border-radius: 4px; 
} */



.hamburger {
  display: none; /* Hidden by default */
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
  /* left: 0;
  padding: 0;
  margin: 0; */
  z-index: 10;
  opacity: 1;
}

.hamburger span {
  display: block;
  background-color: white;
  height: 3px;
  width: 100%;
  margin: 5px 0;
  transition: 0.3s;
}

/* .hamburger {
  width: 30px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  height: 4px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
} */

/* Animation for the hamburger icon turning into an X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  position: absolute;
  top: 10px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  position: absolute;
  top: 10px;
}

/* Mobile styles for Menu */
@media (max-width: 1024px) {
  #menu {
    display: block;
    padding: 0;
  }
  #websiteLogoContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5% 8%;
    position: relative;
  }


  #rightSideMenu {
    width: 100%;
    display: block;
    position: absolute;
    z-index: 2;
  }
  
  #rightList {
      display: none; /* Hide the menu items on small screens */
      /* flex-direction: column; */
      position: relative;
      /* top: 60px;
      right: 10px; */
      background-color: #333;
      width: 100%;
  }

  #rightList.active {
      display: block;
  }


  #rightList li {
    border-bottom-style: solid;
    border-color: #D6AD60;
    padding: 3% 8%;
  }

  #rightList li a{
    padding: 0;
  }

  .hamburger {
      display: block; /* Show hamburger icon on small screens */
  }

  .language-btn {
    width: fit-content;
    padding: 1.5% 8%;
  }

  /* Dropdown Styling */
  .language-dropdown {
    position: relative;
    top: 0;
    width: 100%;
    background: #333; /* Neutral white background */
    border: 0px solid #ccc; /* Subtle border */
    border-radius: 0px; /* Rounded corners for modern look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    display: none;
    transition: display 0.2s ease;
    /* display: block; */
    padding: 5px 0;
    /* min-width: 50px; */
    z-index: 2; /* Places the text above the overlay */
  }
  /* Dropdown Styling */
  .language-dropdown a{
    color: #fff;
  }

  .language-dropdown div{
    padding: 1.5% 12%;
  }

  .language-picker-container {
      display: none; /* Optionally hide language picker on small screens */
      background-color: #333;
      width: 100%;
      border-bottom-style: solid;
      border-color: #D6AD60;
  }

  .language-picker-container.active {
    display: block; /* Optionally hide language picker on small screens */
}

}

/* Dropdown styles */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #333;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}






/* Carousel Styling */
.carousel {
  position: relative;
  text-align: center;
}

.carousel-item{
  transition: transform 3s ease, opacity 1s ease-in-out;
}

.carousel img {
  /* width: 100%; Fit the width of the container */
  /* max-height: 1080px; Restrict the height */
  object-fit: cover; /* Crop the image while keeping the aspect ratio */
  display: block; /* Removes extra space below the image */
  margin: auto; /* Centers the image vertically and horizontally */
  /* transform: translateY(-5%); Move the image 10% upwards */
  /* filter: brightness(70%); Adjust percentage to control darkness */
}
.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust opacity for the darkening effect */
  z-index: 1; /* Places the overlay above the image */
}

.legenda {
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  height: fit-content;
  /* transform: translate(-50%, -50%); Adjust for centering */
  color: #fff; /* White text for readability */
  z-index: 2; /* Ensure it is above the overlay */
  text-align: center; /* Center-align text */
  /* Animation */
  /* transition: opacity 2s ease, transform 2s ease; Smooth fade-in and slide
  opacity: 0; Hidden initially
  transform: translate(3%, 0px); Initial position: slightly below   */
}
/* 
.legenda.active {
  opacity: 1;
  transform: translate(0, 0);
} */

.legenda h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: bold;
  /* Animation */
  transition: opacity 1s ease, transform 1s ease; /* Smooth fade-in and slide */
  opacity: 0;
  transform: translate(0, -20%); /* Initial position: slightly below */

}
.legenda h2.active {
  opacity: 1;
  transform: translate(0, 0);
}

.legenda p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  /* Animation */ 
  transition: opacity 1s ease, transform 1s ease; /* Smooth fade-in and slide */
  opacity: 0;
  transform: translate(-3%, 0); /* Initial position: slightly below */
}

.legenda p.active {
  opacity: 1;
  transform: translate(0, 0); /* Initial position: slightly below */
}

.legenda a{
  text-decoration: none;
}

.legenda button {
  background-color: #D6AD60; /* Bootstrap primary color */
  color: #FFFFFF;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  max-width: 300px;
  min-width: 180px;
  width: fit-content;
  height: fit-content;
  margin: auto;
  /* Animation */
  transition: opacity 1s ease, transform 1s ease, background-color 1s ease; /* Smooth fade-in and slide */
  opacity: 0;
  transform: translate(0, 20%); /* Initial position: slightly below */
}
.legenda button.active {
  opacity: 1;
  transform: translate(0, 0); /* Initial position: slightly below */
}

.legenda button:hover {
  background-color: #9b7d47; /* Darker shade for hover */
}

/* Navigation Arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent arrows */
  border-radius: 50%;
  padding: 10px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  box-shadow: none;
}

@media (max-width: 768px) {
  .legenda {
    bottom: 10%;
    padding: 10px;
  }

  .legenda h2 {
    font-size: 1.8rem;
  }

  .legenda p {
    font-size: 1rem;
  }

  .legenda .btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}




/* Services Choices */
.services {
  margin: 3rem 0;
}

.services h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
}
.services p {
  text-align: center;
  font-size: 1rem;
  color: #4b5563;
  /* margin-bottom: 2rem; */
}

.servicesTitle{
  /* Animation */
  transition: opacity 0.6s ease, transform 0.6s ease; /* Smooth fade-in and slide */
  opacity: 0;
  transform: scale(0.5); /* Initial position: slightly below */
}

.servicesDescription{
  /* Animation */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Smooth fade-in and slide */
  opacity: 0;
  transform: scale(0.5); /* Initial position: slightly below */
}

.servicesDescription.visible{
  opacity: 1;
  transform: scale(1);
}

.servicesTitle.visible{
  opacity: 1;
  transform: scale(1);
}

/* .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
} */

/* .grid {
  display: grid;
  text-align: center;
  gap: 20px; Space between cards
  margin: 20px;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); Responsive grid
  max-width: 1200px; Center grid within a max width
  width: 100%;
} */

/* .grid {
  display: flex; Use flexbox for layout
  flex-wrap: wrap; Allow wrapping of cards
  justify-content: center; Center the cards horizontally
  align-items: center; Center the cards vertically
  gap: 20px; Space between cards
  padding: 20px; Space around the entire grid
  margin: 0 auto; Center the whole container
  max-width: 1200px; Limit the maximum width
} */

/* .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); Automatically adjusts
  gap: 20px;
  padding: 20px;
  margin: 0 auto;
  max-width: 1200px; Optional: limit container width
  justify-content: center; Center the grid if fewer items exist
} */

.grid {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  flex-wrap: wrap;
}

.grid a{
  text-decoration: none;
}
/* 
@media (min-width: 768px) {
  .grid {
      grid-template-columns: repeat(3, 1fr);
  }
} */

/* .card {
  background-color: #ffffff;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  width: 500px;
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
  margin: 20px 20px;
} */

/* Service Card */
.card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 500px;
  /* Animation */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
  margin: 20px 20px;
}

/* Icon */
.icon {
  background: #e7e7e7;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
}

.icon img {
  width: 50%;
  height: 50%;
}

/* Title */
.title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
}

/* Description */
.description {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
} */

/* .icon {
  background-color: #e5e7eb;
  padding: 1.5rem;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.icon svg {
  height: 3rem;
  width: 3rem;
  color: #1f2937;
}
.title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1rem;
  color: #1f2937;
}
.description {
  color: #6b7280;
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
} */


@media (max-width: 1024px) {
  .card {
    width: 300px;
  }
}


/* footer */
.footer {
  background-color: #3B3B3B;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  color: #fff;  
  font-size: 13px;
  width: 100%;
}

#footerImages {
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}

#footerImages .livroReclamacoes{
  width: 150px;
  height: 35px;
  object-fit: cover; /* Crop the image while keeping the aspect ratio */
  margin: 0px 10px;
}

#footerImages .square{
  width: 35px;
  height: 35px;
  margin: 0px 10px;
}


/* AboutUs */
.contentContainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.contentHeader {
  width: fit-content;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.contentHeader h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
}
.contentHeader p {
  color: #6b7280;
  font-size: 1rem;
  margin-top: 0.5rem;
}
.contentSection {
  margin-bottom: 2rem;
}
.contentSection h2 {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.contentSection p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
}
.team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .team {
      grid-template-columns: repeat(3, 1fr);
  }
}
.team-member {
  text-align: center;
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.team-member img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 1rem;
}
.team-member h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0;
}
.team-member p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.5rem;
}
.cta {
  text-align: center;
  margin-top: 2rem;
  width: 20%;
  margin: auto;
}
/* .cta a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: #ffffff;
  background-color: #1d4ed8;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}
.cta a:hover {
  background-color: #2563eb;
} */




/*CALENDAR PICKER */
.flatpickr-calendar .flatpickr-day.selected {
background-color: #00cc00; /* Green */
color: #fff; /* White text on green background */
}


/* Custom style for disabled options */
.unavailable {
  color: red;
  font-style: italic;
}
/* EFEITO DE CARREGAR ENQUANTO AGUARDA PELA RESPOSTA DO SERVIDOR*/
#loading-container {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
 /* height: 100vh;*/
}

#loading-spinner {
  border: 4px solid rgba(0, 0, 0, 0.3);
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#content_container {
  display: none;
}

#book_info {
    display: none;
}











/* AvailabilityForm Page */
/* NEW */
.form-container {
  background-color: var(--card-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  /* width: 100%;
  max-width: 800px; */
  overflow: hidden;
  /* margin: auto; */
  margin-bottom: 20px;
  padding: 20px;
}

.form-container .serviceInfo {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #000000;
}

.formBody {
  width: 70%;
  max-width: 1000px;
  margin: auto;
}


.form-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 30px;
  text-align: center;
}

.form-header h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.form-body {
  padding: 40px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 250px;
  position: relative;
}

.suggestions {
  position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 255px;
    overflow-y: auto;
    background-color: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
    margin-top: 5px;
    display: none;
}

.suggestion-item {
  padding: 12px 18px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.suggestion-item:hover {
  background-color: #fff5ee;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.highlighted {
  color: #eab451;
  font-weight: 500;
}

.form-checkbox input {
  margin-left: 10px;
}

.form-checkbox input {
  margin-left: 10px;
}

.fieldWithIcon{
  margin: 0;
  padding: 0;
}

.fieldWithIcon span{
  position: absolute;
  margin-left: 15px;
  margin-top: 11px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
}

.form-group input, select, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 11px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: var(--transition);
}

.form-group button{
  padding: 11px 16px;
  border-radius: 8px;
}

.form-group.hidden {
  display: none;
}


/* .form-container.withoutIcon input, select {
  padding: 14px 16px;
} */

/* .form-container.withIcon input, */
.form-container input.withIcon,
.form-container select.withIcon {
  padding: 11px 48px;
}

/* .withoutIcon {
  padding: 14px 16px;
} */

/* #buttonInFormGroup {
  position: absolute;
  bottom: 0;  
} */



.form-container .error-border {
  border: 1px solid #a91515;
  box-shadow: 0 0 0 3px #a915154d;
}


.form-container input:focus, select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px #D6AD604d;
}

#timePickerContainer {
  display: none;
}

#returnTimePickerContainer {
  display: none;
}

.button.submitButton {
  background-color: #eab451;
  color: #3B3B3B;
  box-shadow: 0 3px 6px rgba(214, 173, 96, 0.3);
  /* border: none;
  border-radius: 8px;
  padding: 16px 30px;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  margin-top: 15px;
  font-weight: 600; */
}

.button.returnButton {
  background-color: #e6e6e6;
  color: #3B3B3B;
  box-shadow: 0 7px 20px #3b3b3b4d;
  /* border: none;
  border-radius: 8px;
  padding: 16px 30px;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  margin-top: 15px;
  font-weight: 600; */
}

.form-container a {
  text-decoration: none;
}

.button.submitButton:hover {
  background-color: #d0a048;
  transform: translateY(-3px);
  box-shadow: 0 7px 20px #D6AD604d;
}

.button.returnButton:hover {
  background-color: #cdcdcd;
  transform: translateY(-3px);
  box-shadow: 0 7px 20px #3b3b3b4d;
}

/* Responsive adjustments */
/* @media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .form-group {
    width: 100%;
  }
  
  .form-body {
    padding: 20px;
  }
} */

@media (max-width: 1024px) {
  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .bottomButtons {
    flex-direction: column-reverse;
  }

  .formBody {
    width: 100%;
  }

  .stepsContainer {
    align-items: initial !important;
  }

  .step {
    text-align: center;
  }

  .form-body {
    width: 100%;
    padding: 0px;
  }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
}

/* Number input adjustments */
input[type="number"] {
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Date and time picker styling */
input[type="date"],
input[type="time"] {
  color: #555;
}

input[type="select"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition);
}

input[type="select"]::-webkit-calendar-picker-indicator:hover,
input[type="time"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.ErroMessageContainer {
  display: none;
  /* display: flex; For testing purpose */
  padding: 10px 20px;
  margin: 10px 0px;
  background-color: rgba(251, 64, 64, 0.514);
  border: 1px solid red;
  border-radius: 8px;
}

.ErroMessageContainer.backend {
  display: flex;
}

.ErroMessageContainer.Display{
  display: flex;
}

.ErroMessageContainer p {
  color: white;
  margin: auto 0px;
}
.ErroMessageContainer span {
  color: white;
  margin-right: 5px;
}

.input_error_msg {
  display: none;
  color: red;
}

.tooltip {
  position: relative;
  display: inline-block;
  margin-left: 6px;
  background-color: #999;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}

.tooltip-text {
  visibility: hidden;
  opacity: 0;
  width: max-content;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 6px 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* Above the icon */
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.2s;
  white-space: nowrap;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}


/* OLD */
/* .formRow {
  display: flex;
  margin: 60px auto;
} */

/* .formServiceInformation { */
  /* margin: 60px auto; */
  /* width: 70%; */
  /* box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
    0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
  border-radius: 7px; */
  /* padding: 60px 400px; */
  /* padding: 40px 40px;
  display: flex;
  align-items: center;
} */

/* .form_purchase_container { */
  /* margin: 60px auto;
  width: 70%;
  box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
    0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
  border-radius: 7px; */
  /* padding: 60px 400px; */
  /* padding: 40px 40px; */
/* } */

/* .formHeader {
  display: flex;
  align-items: center;
} */

/* .formHeader a {
  font-weight: bold;
  text-decoration: none;
  color: darkgrey;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0;
  padding: 5px 5px;
  border-radius: 50%; */
  /* background-color: #ffffff00; */
/* } */

/*.formHeader a:hover {
  transform: scale(1.2);
  /* text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
  /*background-color: #cfcfcf;
} */

/* .formHeader p {
  padding: 0;
  margin: 0;
}
.formHeader h2 {
  padding: 0px 15px;
  margin: 0;
}

.form_purchase {
  padding: 0px 30px;
} */
/* 
.inputFieldContainer{
  display: block;
  margin: 20px 0px;
  position: relative;
}

.inputFieldContainer label{
  width: 100%;
  margin: 5px 0px;
}

.inputFieldContainer input {
  width: 100%;
  border: none;
  border-bottom: 2px solid lightgray;
}

.inputFieldContainer input:focus {
  width: 100%;
  border: none;
  background-color: none;
  border-bottom: 2px solid #3b3b3b;
}

.fieldWithIcon {
  position: relative;
  display: flex;
}

.fieldWithIcon span{
  top: 3px;
  left: 1px;
  position: absolute;
}

.fieldWithIcon input{
  padding-left: 25px;
}
.fieldWithIcon select{
  padding-left: 25px;
}


.TwoColumnsInputContainer {
  display: flex;
  align-items: center;
  margin: 20px 0px;
} */

/* #form_purchase_container h3{
  padding: 20px 0px;
} */
/* 
.inputFieldContainerFlex {
  display: flex;
  align-items: center;
}

.inputFieldContainerFlex label {
  margin-right: 5px;
}

.first {
  width: 160px;
}

.numberInput{
  width: 40px;
}

.dateInput{
  width: 100px;
}

.dateInputWithIcon {
  width: 125px;
}

.hour-picker{
  height: 30px;
}

.hour-pickerWithIcon{
  height: 30px;
  width: 100px;
}

.spaceBetween {
  margin-left: 10px;
} */



.step-indicator {
  /* display: flex; */
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--card-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin: 50px auto;
  padding: 10px 0px;
  /* width: 100%;
  max-width: 800px; */
  /* max-width: 600px; */
  /* width: 70%;
  max-width: 1000px; */
  /* box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
    0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07); */
  /* border-radius: 7px; */
  /* padding: 60px 400px; */
  /* padding: 40px 40px; */
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
}
.step .circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s, transform 0.3s;
}
.step.active .circle {
  background-color: #D6AD60;
  /* transform: scale(1.1); */
}
.step.completed .circle {
  background-color: #28a745;
}
.step-title {
  margin-top: 8px;
  font-size: 14px;
  color: #8f8f8f;
}

.active .step-title {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
}
.line {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #ddd;
  z-index: -1;
}
.stepsContainer {
  display: flex;
  align-items: center;
  width: 100%;
}

.progressIndicator {
  position: absolute;
  top: 27px;
  margin: 0px 17%;
  /* transform: translateY(-50%); */
  /* left: 13%; */
  background-color: #ddd;
  height: 7px;
  width: 76%;
  max-width: 66%;
  transition: width 0.5s ease-in-out;
  z-index: 0;
}

/* .progressIndicator .deactive {
  background-color: #ddd;
} */

.progressIndicator.Active {
  width: 0%;;
  background-color: #D6AD60;
}





/* Purchase form page*/
.reservation-summary {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  /* border-left: 3px solid var(--primary-color); */
  padding: 20px;
  margin-bottom: 20px;
}

.reservation-summary a {
  text-decoration: none;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.summary-header.withSubtitle {
  display: block;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}


.summary-title {
  /* font-size: 1.1rem; */
  color: var(--secondary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--title-font-size);
}

.summary-id {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 500;
}

.reservation-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.trip-card {
  flex: 1;
  min-width: 280px;
  background-color: var(--light-bg);
  border-radius: 6px;
  padding: 12px;
  position: relative;
  font-size: 15px;
}

.trip-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  color: var(--secondary-color);
  font-weight: 600;
  /* font-size: 16px; */
}

.trip-icon {
  color: var(--primary-color);
  width: 22px;
  text-align: center;
}

.trip-route {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  /* font-size: 0.9rem; */
}

/* .trip-origin, .trip-destination {
  flex: 1;
} */

.route-arrow {
  color: var(--primary-color);
  font-size: 0.8rem;
  margin: 0 3px;
}

.trip-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  /* font-size: 0.85rem; */
}

.detail-item {
  padding: 5px 10px;
  background-color: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.detail-icon {
  color: var(--primary-color);
  font-size: 0.8rem;
}

/* .summary-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px dashed var(--border-color);
}

.passenger-info {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.85rem;
}

.passenger-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.passenger-icon {
  color: var(--primary-color);
} */

/* .price-tag {
  font-weight: 600;
  color: var(--secondary-color);
  background-color: rgba(214, 173, 96, 0.15);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.9rem;
}

.price-highlight {
  color: var(--primary-color);
}

.edit-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  padding: 5px;
  transition: all 0.2s ease;
}

.edit-btn:hover {
  color: #c59d55;
  text-decoration: underline;
}

.toggle-details {
  background: none;
  border: none;
  color: var(--secondary-color);
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  padding: 5px;
}

.toggle-details:hover {
  color: var(--primary-color);
}

.hidden-details {
  display: none;
  padding: 10px 0;
  margin-top: 10px;
  border-top: 1px solid var(--border-color);
  font-size: 0.85rem;
} */

.pricing-summary {
  background: linear-gradient(to right, #f9f9f9, white);
  padding: 2px 10px;
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 40px;
  /* border-left: 3px solid var(--primary-color); */
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #e0e0e0;
}

.price-row:last-child {
  border-bottom: none;
}

.price-label {
  color: var(--secondary-color);
}

.price-value {
  font-weight: 500;
}

.price-details {
  border-bottom: 2px solid var(--primary-color);
  margin-bottom: 15px;
}

.total-price {
  display: flex;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  text-align: right;
  padding: 10px 0;
  justify-content: space-between;
}

.persontalDetails {
  margin-top: 26px;
  /* margin-bottom: 40px; */
}

.subTitle {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: var(--subtitle-font-size);
  margin-top: 40px;
  margin-bottom: 10px;
}

.button-container {
  display: flex;
  /* justify-content: flex-end; */
  margin: 5px 0px;
}

.form-container a {
  color: var(--secondary-color);
  text-decoration: underline;
  /* font-size: 14px; */
  transition: all 0.3s ease;
}

.form-container a.editLink {
    font-size: 14px;
}

.form-container a:hover {
  color: var(--primary-color);
}

.form-container a.yellowLink{
  color: var(--primary-color);
  font-size: inherit;
}

.form-container a.yellowLink:hover{
  color: var(--primary-color-hover);
}

.button {
  display: inline-block;
  padding: 11px 10px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  /* box-shadow: 0 3px 6px rgba(214, 173, 96, 0.3); */
}

.form-container .checkbox-container {
  display: block;
}

.form-container .checkbox-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.checkboxError{
  outline: 2px solid red;
  outline-offset: 2px;
  border-radius: 4px; /* optional for smoother corners */
}

/* .form-container .button:hover {
  background-color: #c59d55;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(214, 173, 96, 0.4);
} */

.form-container .button-edit {
  background-color: var(--light-bg);
  color: var(--secondary-color);
  box-shadow: 0 3px 6px rgba(59, 59, 59, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-container .button-edit:hover {
  background-color: var(--light-bg-hover);
  box-shadow: 0 5px 10px rgba(59, 59, 59, 0.3);
}

.labelPlaceHolder {
  height: 32px;
}

.form-container .removeCustomNonStandardBaggage {
  background-color: var(--light-bg);
  color: red;
  /* box-shadow: 0 5px 10px rgba(59, 59, 59, 0.3); */
}

.form-container .removeCustomNonStandardBaggage:hover {
  background-color: var(--light-bg-hover);
  color: rgb(130, 2, 2);
  /* box-shadow: 0 5px 10px rgba(59, 59, 59, 0.3); */
}

@media (max-width: 768px) {
  .reservation-details {
      flex-direction: column;
  }
}




#changeInfo {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  padding-top: 60px;
}

/* Modal Content/Box */
#changeInfo-content {
  background-color: #fefefe;
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}


/* Booking form page*/
#cancelationFormContainer {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  padding-top: 60px;
}

/* Modal Content/Box */
#cancelationForm {
  background-color: #fefefe;
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

#map{
  margin-top: 40px;
  height: 300px;
  width: 100%;
}


/* STRIPE CSS */
/* Variables 
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
  align-content: center;
  height: 100vh;
  width: 100vw;
}
*/
/* form {
  width: 30vw;
  min-width: 500px;
  align-self: center;
  box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
    0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
  border-radius: 7px;
  padding: 40px;
} */
.countdownTimerContainer {
  display: flex;
  align-items: center;
  gap: 7px;
  /* background-color: #ea614c78; */
  /* color: #856404; */
  /* font-weight: bold; */
  /* font-size: 1.2em; */
  /* padding: 0px 10px; */
  /* border: 1px solid #ffeeba; */
  border-radius: 8px;
  text-align: center;
  /* margin-bottom: 15px; */
}

.countdownTimerContainer .highlighValue{
  margin: 0;
  padding: 0;
  color: red;
}

.countdownTimerContainer .subtitle{
  color: #777;
  margin: 0;
  padding: 0;
}



.hidden {
  display: none;
}

#payment-message {
  color: rgb(105, 115, 134);
  font-size: 16px;
  line-height: 20px;
  padding-top: 12px;
  text-align: center;
}

#payment-element {
  margin-bottom: 24px;
}

#nonStandart_luggage {
  display: none;
}

#anotherNonStandartBags_container {
  display: none;
}

/* Buttons and links */
/* button {
  background: #5469d4;
  font-family: Arial, sans-serif;
  color: #ffffff;
  border-radius: 4px;
  border: 0;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: block;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
  width: 100%;
}
button:hover {
  filter: contrast(115%);
}
button:disabled {
  opacity: 0.5;
  cursor: default;
} */

/* spinner/processing state, errors */
.spinner,
.spinner:before,
.spinner:after {
  border-radius: 50%;
}
.spinner {
  color: #ffffff;
  font-size: 22px;
  text-indent: -99999px;
  margin: 0px auto;
  position: relative;
  width: 20px;
  height: 20px;
  box-shadow: inset 0 0 0 2px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.spinner:before,
.spinner:after {
  position: absolute;
  content: "";
}
.spinner:before {
  width: 10.4px;
  height: 20.4px;
  background: #5469d4;
  border-radius: 20.4px 0 0 20.4px;
  top: -0.2px;
  left: -0.2px;
  -webkit-transform-origin: 10.4px 10.2px;
  transform-origin: 10.4px 10.2px;
  -webkit-animation: loading 2s infinite ease 1.5s;
  animation: loading 2s infinite ease 1.5s;
}
.spinner:after {
  width: 10.4px;
  height: 10.2px;
  background: #5469d4;
  border-radius: 0 10.2px 10.2px 0;
  top: -0.1px;
  left: 10.2px;
  -webkit-transform-origin: 0px 10.2px;
  transform-origin: 0px 10.2px;
  -webkit-animation: loading 2s infinite ease;
  animation: loading 2s infinite ease;
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 600px) {
  form {
    min-width: initial;
  }
}


/* The below code its only for the reservas page */
#calendar {
  margin: 100px;
  width: 80%;
  /*max-width: 800px;*/
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.calendarHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*padding: 10px;*/
  background-color: #4b4b4b;
  color: white;
}

.calendarHeader button {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
}
.calendarHeader #month-year {
  width: 300px;
  padding: 0px 50px 0px 50px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

.weekdays th {
  background-color: #4b4b4b;
  color: white;
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
}

#days td {
  width: 14.28%;
  padding: 10px;
  text-align: left;
  vertical-align: top;
  border: 1px solid #ddd;
  box-sizing: border-box;
  height: 100px;
  position: relative;
}

#days .day-number {
  font-size: 14px;
  margin-bottom: 5px;
}
.notHighlight .day-number p {
  margin: 0;
  padding: 0;
  
}
.highlight .day-number p {
  display: inline-block;
  width: 10px; /* Adjust as needed */
  height: 10px; /* Same as width to make it a perfect circle */
  line-height: 10px; /* Same as height to center the text vertically */
  text-align: center; /* Center the text horizontally */
  padding: 5px;
  border-radius: 100%;
  background-color: rgba(255, 7, 7, 0.631); /* Change this to the desired text color */
  margin: 0; /* Ensure there's no extra space around the p tag */
}

.event-details {
  background-color: rgba(210, 172, 4, 0.5);
  text-decoration: none;
  color: white;
  border-radius: 3px;
  padding: 3px;
  font-size: 12px;
  margin-top: 3px;
  overflow: hidden;
}

.event-details-inactive{
  background-color: rgba(113, 113, 113, 0.5);
  border-style: solid;
  border-width: 1px;
  border-color: #282828;
  text-decoration: none;
  color: white;
  border-radius: 3px;
  padding: 3px;
  font-size: 12px;
  margin-top: 3px;
  overflow: hidden;
}

.event-title {
  font-weight: bold;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-time {
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#days td.inactive {
  background-color: #f0f0f0;
  color: #999;
  cursor: not-allowed;
}

/* warning */
.warning {
  background-color: rgb(253, 203, 0);
  color: black;
  padding: 10px;
  border: 1px solid #373737;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  margin: 20px;
  text-align: left;
}


/* Pop-up overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* SERVICES PAGE CSS */
/* Overlay (dimming background) */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensures it's on top of other content */
}

/* Pop-up Content */
.popup-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow for the pop-up */
  text-align: center;
  width: 300px; /* Adjust width as needed */
}

/* Buttons in the Pop-up */
.popup-buttons {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.popup-buttons button,
.popup-buttons .delete-link {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.popup-buttons button {
  background-color: #ccc; /* Cancel button */
  color: black;
}

.popup-buttons .delete-link {
  background-color: #e74c3c; /* Delete button */
  color: white;
  text-decoration: none;
}

/* Smooth transition for better UX */
.popup-overlay {
  transition: all 0.3s ease;
}

.popup-content {
  transform: scale(0.9); /* Slight zoom effect initially */
  transition: transform 0.3s ease;
}

.popup-overlay.show .popup-content {
  transform: scale(1); /* Reset scale for a smooth pop-in effect */
}









