/* ====================== */
/* Dropdown Cuenta Styles */
/* ====================== */

/* Contenedor principal del dropdown */
.dropdown {
  position: relative;
  display: inline-block;
  font-family: Arial, sans-serif;
}

/* Texto debajo del ícono */
.cuenta-texto {
  color: #a01a26;
    
}

/* Botón principal */
.dropbtn {
  background-color: transparent !important;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.dropbtn::after {
  content: "▼";
  font-size: 12px;
  margin-top: 4px;
  transition: transform 0.3s ease;
}

/* Icono usuario */
.fa-user {
  color: #a01a26 !important;
}
.fa-user:hover {
  color: #a01a27 !important;
}

/* Hover flecha */
.dropdown:hover .dropbtn::after {
  transform: rotate(180deg);
}

/* Menú desplegable */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 999;
  border-radius: 6px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
}

.dropdown-content i {
  min-width: 10px;
  text-align: center;
  font-size: 12px;
}
