:root {
  --background-color: #000000;
  --label-color1:#fff;
  --label-color2:#fff;
  --footer-color: #fff;
}


/* 
----------------------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------General--------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/

html {
  font-size: 16px; 
}

body {
  font-family: 'Roboto', 'Arial', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh; 
  background-color: #fffcfa;
  font-size: 1rem; 
  box-sizing: border-box;
  margin: 0; 
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header {
  text-align: center;
  margin-bottom: 1.25rem; 
  width: 100%;
  padding: 2rem; 
  background-color: var(--background-color);
}

footer {
  margin-top: 0.625rem; 
  padding: 1rem 0rem;
  width: 100%;
  background-color: var(--background-color);
  color: var(--footer-color);
  text-align: center;
}

.hidden {
  display: none !important;
}

.bienvenida-titulo2{
  display: none;
  margin-top: 2rem;
  font-weight: 600;
  text-align: center;
  font-family: 'Roboto', 'Arial', sans-serif;
  color: #fff;
  font-size: 1.6rem;
  color: #ffffff;
  
}
/* 
----------------------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------Form Container--------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/
.container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 80%;
  max-width: 1200px;
  height: auto; 
  border: 2px solid #f7ede2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: 2vh;
  margin-bottom: 2vh;}
  
.watanay-container{
  background-color: var(--background-color);
}
  .form-container {
    flex: 1; 
    max-width: 100%; 
    padding: 2rem; 
    box-sizing: border-box;
    min-height: 500px;
  }

.input-group-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 450px;
  margin: 0 20px;
  box-sizing: border-box;
}

.input-group-container2 {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 450px;
  box-sizing: border-box;
}

.input-group {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  margin-bottom: 0px;
  box-sizing: border-box;
}

/*Changed*/
.image-container {
  flex: 1;
  max-width: 50%;
  min-height: 50vh; 
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  background-color: var(--background-color);
}

.image-container img {
  max-width: 100%;
  height: 100%;
  object-fit: contain; 
}

.image-container img.first-image {
  background-color: var(--background-color);
}

/*Changed*/
.image-container img.first-image{
  width: 75%;
  height: 100%;
  object-fit: contain;
}

.image-container .text-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.image-container .text-content .title {
  position: absolute;
  top: 25%;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

.image-container .text-content .description {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 50%;
  width: 90%;
  font-size: 1rem;
  text-align: left;
  padding: 10px;
  box-sizing: border-box;
}


@media (max-width: 767px) {
  body {
    margin-left: 0; 
    margin-right: 0;
  }
  
  header {
    display: none;
  }
  .bienvenida-titulo2{
    display: block;
    align-self: center;
  }

  .container {
    width: 100%; 
    height: auto; 
    margin: 0;
    border: none; 
    box-shadow: none; 
    flex-direction: column; 
  }

  footer {
    margin-top: 1rem; 
    padding: 1rem 0rem;
    width: 100%;
  }

  .form-container {
    max-width: 100%; 
    padding: 1rem;
  }

  .image-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: 100%; 
    min-height: 20vh; 
    height: auto;  
  }

  .image-container img {
    max-width: 60%; 
    max-height: 60%; 
    object-fit: cover; 
    border-radius: 10px; 
  }
  .image-container img.first-image{/*Changed*/
    max-width: 60%; 
    max-height: 60%; 
    object-fit: cover; 
    border-radius: 10px; 
    position: static; 
    margin: 20px 0px 20px 0px; 
    display: block; 
  }

  .image-container img.second-image,
  .image-container img.third-image {
    display: none;

  }

  .image-container .text-content {
    position: static; 
    padding: 10px; 
  }

  .image-container .text-content .title {
    position: static; 
    width: 100%; 
    text-align: center; 
    font-size: 1.2rem; 
  }

  .image-container .text-content .description {
    position: static; 
    width: 100%; 
    transform: none; 
    text-align: center; 
    font-size: 0.9rem; 
  }
  footer{
    margin: 0;
  }
  
}
@media (min-width: 768px) and (max-width: 1023px) {
  .image-container {
    display: flex;
    flex-direction: column;
    min-height: 40vh; 
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  

  .image-container img.first-image{
    position: static; 
    max-width: 100%; 
    max-height: 50%; 
    object-fit: fill;
  }
  .image-container img.second-image, .image-container img.third-image { 
    position: static; 
    
    object-fit: cover;
  }
  
  
}


    .client-data .input-group2{
        width: 100%;
    }
    .client-data{
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        background-color: var(--background-color);
    }
 

.form-subtitle,
.form-error {
    display: none; 
    text-align: center; 
    margin-bottom: 1rem; 
}


.form-title {
  text-align: center;
    font-size: 1.2rem; 
    font-weight: bold; 
    color: #cd0038; 
    display: none;
}
.form-title2 {
  text-align: center;
    font-size: 1.2rem; 
    font-weight: bold; 
    color: #cd0038; 
    display: block;
}


.form-subtitle {
    margin-top: 1rem;
    font-size: 1rem; 
    color: #b7b9ac; 
    display: none;
}


.form-error {
    font-size: 1rem; 
    color: #ff0000; 
    font-weight: bold; 
}


@media (max-width: 767px) {
    .form-title,
    .form-subtitle,
    .form-error {
      display: block;
        align-self: center;
        text-align: center;
    }

    .form-subtitle {
        margin-bottom: 2rem; 
    }

    .form-error {
        margin-bottom: 1.5rem; 
    }
}
  /* 
  ----------------------------------------------------------------------------------------------------------------------------------------------------------------------
  -------------------------------------------------------------Inputs Customization--------------------------------------------------------------------------------------------------
  ----------------------------------------------------------------------------------------------------------------------------------------------------------------------
  */
  
  p {
    font-size: 1.3em;
    margin: 10px 0;
    font-weight: 300; 
  }
  
  li {
    font-size: 1em;
    margin: 10px 0;
    font-weight: 300; 
  }
  
  
  h1 {
    font-size: 2rem;
    margin: 0;
    color: #ffffff;
  }
  
  h2 {
    font-size: 1.5rem;
    margin: 5px 0 20px 0;
    color: #ffffff;
    text-align: center;
  }
  
  .text-container22 {
    display: flex;
    flex-direction: column;
    width: 100%;       
    margin: 0 auto;  
    gap: 25px;   
  }
  
  .text-container22 h6{
    display: flex;
    text-align: center;  
    font-size: 0.75rem;
    max-width: 60%;     
    margin: 0 auto;     

  }

  .logoDiv {
      display: flex;
      width: 100%;
      height: 70px;
      max-height: 70px;
      max-width: 100%;
      /*background-color: rgb(194, 35, 35);*/
      justify-items: center;
      align-items: center;
      justify-content: center;
  }

  .logoDivImg {
      display: flex;
      max-height: 100%;
      max-width: 100%;
      border-radius: 10px;
      cursor: pointer;
  }
  
  @media (max-width: 767px) {
    .text-container22 h6{
      font-size: 0.75rem;  
    }
    
  }
  

  .image-container h2 {
    font-size: 1.5rem;
    margin: 5px 0 20px 0;
    color: #000000;
    text-align: center;
  }
  
  input[type="number"], select {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin-top: 5px;
    font-size: 14px;
  }
  
  .input-group label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;

    display: block; 
  }
  .label-1{
    color: var(--label-color1)
  }
  .label-2{
    color: var(--label-color2)
  }
  
  .input-group input,
  .input-group textarea,
  .input-group select {
      width: 100%;
      padding: 10px;
      font-size: 14px;
      font-family: Arial, sans-serif;
      color: #555;
      background-color: #f9f9f9;
      border: 1px solid #ccc;
      border-radius: 6px;
      box-sizing: border-box;
      transition: border-color 0.3s, box-shadow 0.3s;
  }
  
  .input-group input::placeholder,
  .input-group textarea::placeholder {
      color: #aaa;
      font-style: italic;
  }
  
  .input-group input:focus,
  .input-group textarea:focus,
  .input-group select:focus {
      border-color: #007BFF; 
      box-shadow: 0 0 5px rgba(0, 123, 255, 0.3); 
      outline: none;
      background-color: #fff; 
  }
  
  .input-group textarea {
    min-height: 100px; 
    resize: vertical; 
  }
  
  .input-group input[type="number"] {
    appearance: textfield; 
    -moz-appearance: textfield; 
  }
  
  .input-group input[type="number"]::-webkit-inner-spin-button,
  .input-group input[type="number"]::-webkit-outer-spin-button {
      -webkit-appearance: none; 
      margin: 0;
  }
  
  .input-group select {
      appearance: none; 
      background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23333" d="M2 0L0 2h4z"/></svg>');
      background-repeat: no-repeat;
      background-position: right 10px center;
      background-size: 10px 10px;
  }
  
  .checkbox-container {
    display: flex;
      flex-direction: column;
      align-items: flex-start; /* Adjust alignment as needed */
  }
  
  .checkbox-container input[type="checkbox"] {
    align-items: center; 
    max-width: 50px;
    transform: scale(1.5); 
    margin-left: 80px;
    box-sizing: border-box;
  }
  
  /* 
  ----------------------------------------------------------------------------------------------------------------------------------------------------------------------
  -------------------------------------------------------------Input Number--------------------------------------------------------------------------------------------------
  ----------------------------------------------------------------------------------------------------------------------------------------------------------------------
  */
  
  .iti {
    width: 100%; 
    max-width: 450px; 
    box-sizing: border-box;
  }
  
  .iti input {
    width: 100%; 
    box-sizing: border-box; 
  }
  
  /* 
  ----------------------------------------------------------------------------------------------------------------------------------------------------------------------
  -------------------------------------------------------------Buttons--------------------------------------------------------------------------------------------------
  ----------------------------------------------------------------------------------------------------------------------------------------------------------------------
  */
  .submit-button {
    display: block;
    width: auto; 
    padding: 12px 24px;
    background-color: #cd0038;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin: 15px auto 0 auto;
    box-shadow: 0 2px 4px rgba(205, 0, 56, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    background-color: #640b0b;
    transform: translateY(-2px);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
  background-color: #999999;
}
  
/*
----------------------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------Confirmation and Cancel Notification PopUps--------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/
.mini-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 40vw; 
  height: auto; 
  padding-bottom: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  transition: all 0.3s ease;
}


.mini-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  transition: color 0.2s;
}

.mini-popup-close:hover {
  color: #333;
}


@media (max-width: 768px) {
  #success-close-btn{
    display: none;
  }
  #error-popup-close{
    display: none;
  }
  .mini-popup {
      max-width: 100%;
  }
}

@media (max-width: 480px) {
  #success-close-btn{
    display: none;
  }
  #error-popup-close{
    display: none;
  }
  .mini-popup {
      border-radius: 0;
      width: 95%;
      height: auto;
      max-height: none;
      padding-bottom: 15px; 
  }
}


.popup-content {
  box-sizing: border-box;
}

.popup-body {
  overflow-y: auto;
}

.button {
  display: block;
  width: auto;
  padding: 10px 20px;

  color: #ffff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  margin: 15px auto 0 auto;
}

.button:hover {
  
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.close-btn {
  position: absolute;
  background-color: #808080; 
  color: white; 
  top: 10px;
  right: 10px;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  padding: 5px; 
  border-radius: 50%; 
  width: 40px; 
  height: 40px;
  display: flex; 
  align-items: center;
  justify-content: center;
}

.pop-header-success{
  background-color: green;
  text-align: center;
  padding: 15px 0;
  border-radius: 8px 8px 0 0; 
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 
              0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.pop-header-error{
  background-color: red;
  text-align: center;
  padding: 20px;
  border-radius: 8px 8px 0 0; 
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 
              0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.pop-header-error h3{
  padding: 10px 60px;
  font-size: 1.3rem;
  margin: 0;
  color: #fff;
  font-weight: 600;
}

.pop-header-processing{
  background-color: rgb(0, 140, 255);
  text-align: center;
  padding: 15px;
  border-radius: 8px 8px 0 0; 
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 
              0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.bg-red{
  background-color: #ff0000;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  font-size: 1.2rem;
  margin-top: 20px;
}

.bg-green{
  background-color: green;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  font-size: 1.2rem;
  margin-top: 20px;
}

.check-reservation{
  font-size: 48px; color: green; margin-bottom: 15px;
}

/*--*/
.addingButtons{
  display: flex;
  flex-direction: row;
  width: 150px;   
  height: 40px;
  max-width: 100%; 
  max-height: 100%;
  margin: auto;
  /*background-color: #007BFF;*/
}
.plusButtons,
.displayButton,
.minusButtons{
  display: block;
  flex-direction: column;
  width: 50px;   
  min-height: 40px;
  max-width: 33%; 
  max-height: 33%;
  justify-content: center;
  align-items: center;
  text-align: center;
  align-content: center;
}
.plusButtons,
.minusButtons{
  font-size: 24px;
  border-radius: 5px;
  background-color: #bebebe;
}
.displayButton{
  font-size: 16px;
  border-radius: 5px;
  background-color: #ffffff;
  border: 1px solid #000000; 
}