
#panelCentral {
  background-image: url('../img/fondo1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-in {
  animation: slide-in 0.3s ease-out;
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-color: #ccc #0000;
  animation: l16 1s infinite linear;
}

.loader::before,
.loader::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}

.loader::before {
  border-color: #f03355 #0000;
  animation: inherit;
  animation-duration: .5s;
  animation-direction: reverse;
}

.loader::after {
  margin: 8px;
}

@keyframes l16 {
  100% {
    transform: rotate(1turn)
  }
}


@keyframes pulse-line {

  0%,
  100% {
    transform: scaleX(1);
    opacity: 0.9;
  }

  50% {
    transform: scaleX(1.05);
    opacity: 1;
  }
}

.animate-pulse-line {
  animation: pulse-line 2.5s ease-in-out infinite;
  transform-origin: left;
}

#mini-calendar .fc {
  font-size: 0.7rem;
  border-radius: 0.75rem;
}

#mini-calendar .fc-toolbar-title {
  font-size: 0.85rem;
  font-weight: 600;
}

#mini-calendar .fc-button {
  background-color: #1C2559;
  color: white;
  border: none;
  border-radius: 0.375rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.65rem;
}

#mini-calendar .fc-button:hover {
  background-color: #FFC800;
  color: #1C2559;
}

#mini-calendar .fc-scrollgrid {
  border-radius: 0.5rem;
}

@keyframes spinAndChangeColor {
  0%   { transform: rotate(0deg);   color: #1C2559; }  
  25%  { color: #D9984A; }                           
  50%  { color: #FF6B35; }                            
  75%  { color: #1C2559; }
  100% { transform: rotate(360deg); color: #D9984A; }
}

.spinner-changing {
  animation: spinAndChangeColor 2s linear infinite;
  font-size: 30%; 
  width: 10%;
  height: auto;
}

.nav-button:hover svg {
  stroke: #1C2559;
}

@keyframes progress {
  0% { width: 0%; }
  100% { width: 100%; }
}

.animate-progress {
  animation: progress 3s linear forwards;
}

:root {
--azul-unedl: #29235c;
--azul-claro-unedl: #C9C8D6;
--amarillo-unedl: #d29d46;
--amarillo-claro-unedl: #E4C490;
--verde-unedl: #235c29;
--verde-claro-unedl: #A7BDA9;
--rojo-unedl: #5c2923;
--morado-unedl: #7c186b;
--morado-claro-unedl: #CAA2C3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
}
body {
  background-image: url(../img/fondo1.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}

#app {
  margin-top: 100px;
}

.sticky-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: auto;
  background: #ffffff;
  animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  border-radius: 0;
  z-index: 48;
  animation-name: menu_sticky;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
  transition: all 0.25s ease-in-out;
}

.sticky-menu nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav {
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.nav:hover {
  color: #d29d46;
  transition: all 0.3s ease-in-out;
}

.nav:disabled {
  color: gray;
  cursor: not-allowed;
}

.logo {
  height: 80px;
  margin-top: -5px;
  margin-bottom: -5px;
}

.text-unedl-amarillo {
    color: #d29d46 !important;
}
.border-unedl-amarillo {
    border-color: #d29d46 !important;
}
.bg-unedl-amarillo {
  background: #d29d46 !important;
}
.bg-unedl-amarillo:hover {
  background: #75561b !important;
}
.bg-unedl-amarillo:disabled {
  background: #4d4d4d !important;
  opacity: 0.5;
  cursor: not-allowed;
}
.bg-unedl-rojo{
  background: #5c2923 !important;
}
.bg-unedl-rojo:hover {
  background: #301311 !important;
}
.bg-unedl-rojo:disabled {
  background: #4d4d4d !important;
}

.border-unedl-azul {
    border-color: #29235c !important;
}

.bg-unedl-azul {
  background: #29235c !important;
}

.bg-unedl-azul:hover {
  background: #141131 !important;
}
.bg-unedl-azul:disabled {
  background: #4d4d4d !important;
}
.bg-unedl-verde{
  background: #235c29 !important;
}
.bg-unedl-verde:hover {
  background: #122e14 !important;
}
.bg-unedl-verde:disabled {
  background: #4d4d4d !important;
}

.file-input:disabled {
  background: #4d4d4d !important;
  opacity: 0.5;
  cursor: not-allowed;
}
.file-input:disabled + span {
  display: none;
  /* Estilos para el span cuando el input está deshabilitado */
  background-color: #4d4d4d; /* Un color de fondo gris, por ejemplo */
  opacity: 0.5;
  cursor: not-allowed;
}

.file-input:disabled + span:hover {
  background-color: #4d4d4d; /* Aseguramos que el hover no cambie el color */
}
#titulo {
  margin: auto;
  margin-top: -10px;
  width: 250px;
  color: #d29d46;
  display: flex;
  border-width: 3px;
  border-color: #d29d46;
  justify-content: center;
  border-radius: 0.205rem;
  border-left-width: 0;
  border-right-width: 0;
}

dialog{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
