.content {
  border-radius: 10px !important;
  background: #fff !important;
  padding: 16px !important;
  margin: 0 0 24px 0 !important;
  box-sizing: border-box !important;
}
.profile-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

#AvatarAdmin {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

#AvatarAdminPerfil {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
}
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(57, 178, 207, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(57, 178, 207, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(57, 178, 207, 0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes slideDown {
  from {
    transform: translate(-50%, -150%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translate(-50%, 100%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

@keyframes fadeInOut {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Estilo para el label del vehículo usando divIcon */
.vehicle-div-icon {
  font-size: 10px;
  font-weight: bold;
  pointer-events: none;
  text-align: center;
}