.body {
  background-color: #f8fafc;
  font-family: 'Segoe UI', sans-serif;
}

.card-departamento {
  display: flex;
  flex-direction: row;
  align-items: center;
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
}

.card-departamento:hover {
  box-shadow: 0 4px 16px rgba(0, 128, 96, 0.15);
  transform: scale(1.01);
}

.card-departamento img {
  width: 45%;
  object-fit: cover;
  height: 100%;

}

.card-departamento .card-body {
  width: 55%;
}

.icon-bg {
  background-color: #e6f4ea;
  border-radius: 50%;
  padding: 10px;
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar-brand {
  font-size: 1.3rem;
}

.dropdown-menu {
  min-width: 180px;
  border-radius: 0.75rem;
}

.dropdown-item:hover {
  background-color: #e9f5ee;
}

.btn-floating {
  position: fixed;
  bottom: 20px;
  z-index: 1050;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 20px;
  background-color: #198754;
  color: white;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.btn-floating:hover {
  transform: scale(1.1);
  background-color: #157347;
}

.btn-floating-left {
  left: 20px;
}

.btn-floating-right {
  right: 20px;
}


.header-banner {
  background: linear-gradient(45deg, #198754, #40c995);
  border-radius: 20px;
  color: white;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.login-card {
  animation: login 2s ease 0s 1 normal forwards;
  border-radius: 1.5rem;
  max-width: 400px;
  width: 100%;
  background-color: #ffffff;
}

@keyframes login {
	0% {
		opacity: 0;
		transform: translateY(-250px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}




.card-departamento {
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.card-departamento:hover {
  transform: scale(1.03);
  box-shadow: 0 0 12px rgba(0, 100, 50, 0.15);
}


.hover-shadow:hover {
  box-shadow: 0 0.75rem 1.5rem rgba(0, 128, 96, 0.25) !important;
  transition: box-shadow 0.3s ease-in-out;
}

.hover-shadow:hover {
  box-shadow: 0 0.75rem 1.5rem rgba(0, 128, 96, 0.25) !important;
  transition: box-shadow 0.3s ease-in-out;
}

#codigoEstudio {
  font-family: 'Courier New', Courier, monospace;
  letter-spacing: 3px;
}

.hover-shadow:hover {
  box-shadow: 0 0.75rem 1.5rem rgba(0, 128, 96, 0.25) !important;
  transition: box-shadow 0.3s ease-in-out;
}

.text-monospace {
  font-family: 'Courier New', Courier, monospace;
  letter-spacing: 1px;
}

.badge-disponible {
  background-color: #198754;
}

.badge-proceso {
  background-color: #ffc107;
  color: #212529;
}

.badge-cancelado {
  background-color: #dc3545;
}

.analitica-item {
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: white;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.05);
  cursor: default;
  transition: box-shadow 0.3s ease-in-out;
}

.analitica-item:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 128, 96, 0.3);
}