/* Geral */
body {
  background-color: #f8f9fa;
}

/* Navbar */
.navbar {
  background-color: white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
}

/* Sidebar */
#sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: #4682B4;
  color: white;
  z-index: 1000;
  transition: left 0.3s ease;
  padding-top: 70px;
}

#sidebar.active {
  left: 0;
}

#sidebar ul {
  list-style: none;
  padding: 0;
}

#sidebar ul li a {
  display: block;
  padding: 10px;
  color: white;
  text-decoration: none;
}

#sidebar ul li a:hover {
  background-color: #4169E1;
}

/* Botão Toggle */
.sidebar-toggle-btn {
  position: fixed;
  top: 15px;
  right: 15px;
  background-color: #4682B4;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  z-index: 1100;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* Cards */
.album-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.album-card:hover {
  transform: scale(1.05);
}

.album-img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

/* Footer */
footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}


/* Sidebar */
#sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: #f8f9fa;
  transition: left 0.3s ease;
  z-index: 1000;
  padding-top: 70px;
}

#sidebar.active {
  left: 0;
}

#sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#sidebar ul li {
  width: 100%;
}

#sidebar ul li a {
  display: block;
  padding: 15px;
  font-size: 1.2rem;
  color: #000;
  text-decoration: none;
  border-bottom: 2px solid #4682B4;
}

#sidebar ul li a:hover {
  background-color: #4682B4;
  color: white;
}

/* Sidebar Button */
.sidebar-toggle-btn {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 1100;
  background-color: #4682B4;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}