/* General */
body {
    display: flex;
    min-height: 100vh;
    margin: 0;
}

/* Sidebar */
#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: #343a40;
    color: white;
    transition: all 0.3s ease;
}

#sidebar.collapsed {
    margin-left: -250px;
}

#sidebar a {
    color: #ddd;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

#sidebar a:hover {
    background: #495057;
    color: white;
}

/* Main Content */
#main-content {
    flex-grow: 1;
    padding: 20px;
}

/* Toggle Button */
#toggle-sidebar {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 1030;
    background: #343a40;
    color: white;
    border: none;
}

#toggle-sidebar:hover {
    background: #495057;
}

.password-hint li {
  color: red;
}
.password-hint li.valid {
  color: green;
}
/* assets/style.css */
footer {
    background-color: #f0f0f0;
    padding: 20px;
    text-align: center;
}
.dropdown-menu.show {
  background-color: black;
  color: white;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f0f0f0;
  padding: 15px;
  text-align: center;
  z-index: 1000;
  display: none; /* Inicialmente oculto */
}

.cookie-banner button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  margin-left: 10px;
}