

.card {
    margin-top: 50px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.main-container {
    background-color: #d1d1d1;
}

.custom-form-width {
    max-width: 600px; /* Máxima anchura en pantallas grandes */
}

@media (min-width: 1200px) {
    .custom-form-width {
        max-width: 70%; /* Ocupa el 50% del ancho en pantallas extra grandes */
    }
}

.form-label {
    color: #1abc9c; /* Cambiar el color del texto a negro */
    font-weight: bold; /* Hacer el texto más grueso */
}

.btn-green{
    width: 300px;
    background-color: #1abc9c; 
    border: 1px solid #1ab697;
    color: #fff;
}

.btn-green:hover {
    background-color: #19d2ad; 
    border: 1px solid #1ab697;
  }


.dropdown-menu::before {
    display: none;
  }

.btn-dots {
    padding: 5px 10px;
    background-color: #b3e2db; 
    font-size: 1.2rem;
}

#map {
    height: 88vh;
    width: 100%;
}

/* HTML marker styles */
.green-tag {
    background-color: #1abc9c;
    border-radius: 8px;
    color: #000;
    font-size: 11px;
    padding: 5px 5px;
    position: relative;
    transform: translateY(-7px);
  }
  
.green-tag::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 0);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #1abc9c;
  }

.red-tag {
    background-color: #dd5454;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 11px;
    padding: 5px 5px;
    position: relative;
    transform: translateY(-7px);
  }
  
.red-tag::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 0);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #dd5454;
  }

  .yellow-tag {
    background-color: #e2ba19;
    border-radius: 8px;
    color: #000;
    font-size: 11px;
    padding: 5px 5px;
    position: relative;
    transform: translateY(-7px);
  }
  
.yellow-tag::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 0);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #e2ba19;
  }

  .status-rejected {
    background-color: #f0f0f0; /* Un verde claro */
    border-color: #f0f0f0;
    padding: 1px;
    border-radius: 4px;
  }
  
  .status-completed {
    background-color: #d4edda; /* Un verde claro */
    border-color: #c3e6cb;
    padding: 1px;
    border-radius: 4px;
  }

  .status-cancelled {
    background-color: #f8d7da; /* Un rojo claro */
    border-color: #f5c6cb;
    padding: 1px;
    border-radius: 4px;
  }

  .status-pending {
    background-color: #d5f186; 
    border-color: #b5cc76;
    padding: 1px;
    border-radius: 4px;
  }

  .panic-tag {
    background-color: #ff0000;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 11px;
    padding: 5px 5px;
    position: relative;
    transform: translateY(-7px);
  }
  
.panic-tag::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 0);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #c00606;
  }

  .panic-alert {
    background-color: #ff0000;
    color: white; 
    padding: 20px; 
    margin: 20px; 
    border-radius: 5px; 
    font-weight: bold; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    text-align: center;
  }

  @media (max-width: 768px) {
    .panic-alert {
      margin: 10px; 
    }
  }

  .bg-light-danger {
    background-color: #f1a7a0;
  }

#markerMenu button {
  display: block;
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
  margin: 5px 0;
  background-color: #c0392b;
  color: white;
  border: none;
  cursor: pointer;
}

#markerMenu button:hover {
  background-color: #a93226;
}

.hero-section {
  background-color: #f8f9fa;
  padding: 100px 0;
  text-align: center;
}
.cta-btn {
  background-color: #007bff;
  color: white;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 16px;
  text-decoration: none;
}
.cta-btn:hover {
  background-color: #0056b3;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  display: none;
}

.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu:focus-within > .dropdown-menu {
  display: block;
}

.dropdown-submenu > .dropdown-toggle::after {
  content: " >>";
  border: none;
  margin-left: 0.5em;
  vertical-align: top;
}