﻿.explorer-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.3em;
  height: 5.3em;
  border: none;
  cursor: pointer;
  border-radius: 0.4em;
  background: rgba(235, 252, 254, 0.8);
}

.explorer-container {
  position: relative;
  width: 3.5em;
  height: 3.1em;
  background: none;
  overflow: hidden;
}

.explorer-folder {
  position: absolute;
}

.explorer-one {
  bottom: 0;
  width: 100%;
  height: 88%;
  border-radius: 3px;
  border-top: 2px solid rgb(206, 167, 39);
  background: linear-gradient(-35deg, rgb(238, 194, 47) 5%, rgb(255, 223, 118));
}

.explorer-two {
  top: 5%;
  width: 38%;
  height: 19%;
  border-radius: 3px 3px 3px 0;
  background-color: rgb(206, 167, 39);
  box-shadow: 0 1px 5px -2px rgba(0, 0, 0, 0.5);
}

.explorer-two::before {
  content: "";
  position: absolute;
  left: 88%;
  width: 0;
  height: 0;
  border-left: 7px solid rgb(206, 167, 39);
  border-top: 0.3em solid transparent;
  border-bottom: 0.3em solid transparent;
}

.explorer-three {
  left: 0.5em;
  bottom: 0;
  width: 2.5em;
  height: 0.9em;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(-35deg, rgb(25, 102, 218), rgb(109, 165, 249));
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

.explorer-four {
  left: 1em;
  bottom: 0.3em;
  width: 1.5em;
  height: 0.18em;
  border-radius: 1em;
  background-color: rgb(20, 77, 163);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.explorer-line {
  position: absolute;
  bottom: 0;
  width: 0.9em;
  height: 0.4em;
  background-color: #999;
  border-radius: 1em;
  transition: all 0.15s linear;
}

.explorer-button:focus .explorer-line,
.explorer-button:active .explorer-line {
  width: 2.3em;
  background-color: rgb(41, 126, 255);
}

.explorer-text {
  position: absolute;
  top: -4.5em;
  width: 8.5em;
  height: 2.4em;
  background-color: #666;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  opacity: 0;
  transition: all 0.25s linear;
  font-size: 0.75rem;
}

.explorer-button:hover .explorer-text {
  opacity: 1;
}

/* Estilo personalizado para inputs y textarea */
.input-grande {
  font-size: 1.5 !important; /* text-lg */
  line-height: 1.75rem;
}

/* Estilo para los labels animados */
.label-grande {
  font-size: 1.4rem !important;
  line-height: 1.5rem;
}

/* Animación del label cuando el input tiene texto o foco */
.peer:focus ~ .label-grande,
.peer:not(:placeholder-shown) ~ .label-grande {
  top: 0.5rem !important;
  font-size: 0.875rem !important; /* text-sm */
  color: #3b82f6 !important; /* blue-500 */
}

/* Estilo base del label cuando no hay texto */
.peer:placeholder-shown ~ .label-grande {
  top: 0.875rem !important;
  font-size: 1rem !important;
  color: #9ca3af !important; /* gray-400 */
}
