/* Light mode */
[data-bs-theme=light] .main {
  background-color: #e0e4e6;
  color: #3f3b3b;
}

/* Dark mode */
[data-bs-theme=dark] .main {
  background-color: #212121;
  color: #e0e4e6;
}

.my-card {
  border: 1px solid #eaeaea;
  border-radius: 0px;
}

html, body {
  height: 100%;
}

body {
  font-family: "Rubik", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  min-height: 100vh;
  font-size: 1rem;
}

main {
  height: 100%;
  overflow-x: hidden;
}

h2 {
  font-weight: 600;
  color: #3f3b3b;
  font-size: 1.3rem;
}

.color-primario {
  color: #FA672D;
}

a {
  color: #FA672D;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: #3f3b3b;
}

.login-box {
  max-width: 800px;
  width: 100%;
  border: 1px solid #eaeaea;
  border-radius: 20px;
  background-color: white;
  box-shadow: rgba(5, 3, 3, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.login-box .box-col {
  padding-left: 60px;
}
.login-box h2 {
  padding-bottom: 20px;
}
.login-box p {
  color: #6e757c;
  padding-top: 20px;
  font-size: small;
}

.custom-bg {
  background-image: url("../img/fondo-ondas.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 500px;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 700px;
  }
}
.pagination {
  --bs-pagination-color: #6e6e6e;
  --bs-pagination-active-bg: #FA672D;
  --bs-pagination-active-border-color: #FA672D;
  --bs-pagination-hover-color: black;
}

.caret-icon {
  height: auto;
  padding: 0.3rem 0 0.2rem 0;
  display: flex;
  align-items: center;
}

.font-weight-300 {
  font-weight: 300;
}

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

.font-weight-600 {
  font-weight: 600;
}

.sub-title {
  font-size: smaller;
  color: #FA672D;
}

table th {
  color: #6e757c;
  font-weight: 400;
  padding-bottom: 10px;
}
table thead {
  border-bottom: 1px solid #dee2e6;
}
table td {
  border-bottom: 1px solid #dee2e6;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
table td :hover {
  color: #FA672D;
}

.myform textarea, .myform select, .myform input {
  background-color: transparent;
  border: 1px solid #eaeaea;
  border-radius: 5px;
  padding: 0.3rem 0.3rem;
  width: 100%;
}
.myform textarea:focus-within, .myform select:focus-within, .myform input:focus-within {
  border: 1px solid #FA672D;
}
.myform label {
  margin-top: 0.8rem;
  color: #6e757c;
  font-size: 0.9rem;
}
.myform .checkbox-inline {
  vertical-align: middle;
  line-height: 1.2; /* Adjust this value to make line spacing tighter */
}
.myform .checkbox-inline input[type=checkbox] {
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
  width: 20px;
  transform: translate(0px, 0px); /* Fixed syntax - changed from 'translate' to 'transform' */
}
.myform .checkbox-inline label {
  display: inline-block;
  vertical-align: middle;
  line-height: 0.6; /* Adjust this value to make label text tighter */
  margin-bottom: 0; /* Remove any default bottom margin */
}
.myform .error-text {
  color: #FA672D;
  font-size: 0.9rem;
}

.leaflet-container a {
  color: #3f3b3b;
}

/* Dark mode */
[data-bs-theme=light] .mycontainer {
  background-color: #fff;
}

/* Dark mode */
[data-bs-theme=dark] .mycontainer {
  background-color: #212121;
}

/* Desplegable en el SELECT que hace el fetch */
.dropdown-options {
  display: none; /* Initially hidden */
  max-height: 200px;
  max-width: 70%;
  overflow-y: auto;
  position: absolute;
  background-color: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.dropdown-options li {
  padding: 5px 10px;
  cursor: pointer;
}

.mycontainer {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 2rem;
  margin: 0.3rem;
  box-shadow: 0rem 0rem 2rem rgba(103, 103, 103, 0.15);
  border-radius: 1.4rem;
}
.mycontainer .vertical-divider {
  border-right: 1px solid #eaeaea;
  padding-right: 2rem;
}
.mycontainer h5 {
  font-size: 0.75rem;
  color: #3f3b3b;
  border-left: 3px solid #FA672D;
  padding-left: 10px;
}
.mycontainer hr {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.circular-img {
  border-radius: 50%;
  overflow: hidden;
  display: flex; /* Center the image within the container */
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}
.circular-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover; /* Ensure the image fills the entire circular thumbnail */
}
.circular-img .convert-grey {
  filter: grayscale(100%);
}

.input-file-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.input-file-container div {
  position: relative;
  overflow: hidden;
}
.input-file-container input {
  position: absolute;
  font-size: 50px;
  opacity: 0;
  right: 0;
  top: 0px;
}
.input-file-container .btn-outline-secondary {
  background-color: white;
}
.input-file-container .btn-outline-secondary:hover {
  background-color: #6e757c;
}

.btn-primary {
  background-color: #FA672D;
  border-color: #FA672D;
}
.btn-primary:hover {
  background-color: #3f3b3b;
  border-color: #3f3b3b;
}

.btn-outline-primary {
  border-color: #FA672D;
  color: #FA672D;
}
.btn-outline-primary:hover {
  background-color: #FA672D;
  border-color: #FA672D;
}

.form-check-input:checked {
  background-color: #FA672D;
  border-color: #FA672D;
}

.navbar-brand {
  padding-right: 100px;
}

.actions-bar {
  padding: 30px 0px 30px 0px;
  text-align: center;
}

.main-title {
  margin: 30px 0px;
}

.my-card {
  margin: 10px;
  padding: 20px;
  color: #6e757c;
  transition: box-shadow 0.3s ease-in-out;
}
.my-card:hover .circular-thumbnail {
  transition: transform 0.3s ease-in-out;
  filter: grayscale(0%);
}
.my-card.hover-shadow:hover {
  box-shadow: rgba(5, 3, 3, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.my-card .container {
  margin: 10px;
  padding: 0px;
}
.my-card .title {
  font-weight: 500;
}
.my-card .description {
  font-weight: 300;
}
.my-card .circular-thumbnail {
  width: 100px;
  height: 100px;
  border-radius: 50%; /* creates the circular shape */
  overflow: hidden; /* Hides any part of the image that exceeds the circular border */
  margin-left: 20px;
  filter: grayscale(100%);
}
.my-card .circular-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image fills the entire circular thumbnail */
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-control {
  padding: 0.3rem 0.5rem;
  font-size: 1rem;
}
.form-control:focus {
  box-shadow: rgba(5, 3, 3, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  color: #3f3b3b;
  border-color: #FA672D;
}

.form-select {
  font-size: 1rem;
  padding: 0.5rem 0.3rem;
  border: 1px solid #eaeaea;
  border-radius: 5px;
}
.form-select:focus {
  box-shadow: rgba(5, 3, 3, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  color: #3f3b3b;
  border-color: #FA672D;
}

.fixed-label {
  position: absolute;
  top: -0.75rem;
  left: 0.75rem;
  font-size: 0.8rem;
  background-color: #fff;
  padding: 0px 5px;
  color: #FA672D;
}

.floating-label {
  position: absolute;
  top: 0;
  left: 0.75rem;
  font-size: 1rem;
  color: #999;
  pointer-events: none;
  transform: translateY(0.5rem);
  transition: all 0.2s ease-in-out;
}

.form-control:not(:placeholder-shown) + .floating-label,
.form-control:focus + .floating-label {
  opacity: 1;
  transform: translateY(-0.75rem);
  font-size: 0.8rem;
  background-color: #fff;
  padding: 0px 5px;
  color: #FA672D;
}

.form-check-input {
  color: #6e757c;
  margin-top: 0.8rem;
}

.form-check-label {
  color: #6e757c;
  margin-top: 0.5rem;
}

.nav-tabs {
  --bs-nav-tabs-link-active-color: #FA672D;
  --bs-nav-tabs-link-active-border-color: #FA672D #FA672D #fff;
  --bs-nav-tabs-link-color: #3f3b3b;
  --bs-nav-tabs-link-hover-color: #3f3b3b;
  --bs-nav-link-color: #6e757c;
  --bs-nav-link-hover-color: #3f3b3b;
  --bs-nav-tabs-border-color: #FA672D;
}

.tab-contenedor {
  padding: 10px;
  border-bottom: 1px solid #FA672D;
  margin-bottom: 2rem;
  min-height: 535px;
  height: auto;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 80vh;
  overflow-x: hidden;
  width: 100%;
}

/*# sourceMappingURL=main.css.map */
