body {
  background-color: #f5f7fa;
}
.sidebar {
  width: 240px;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #1e293b;
  color: white;
  padding: 20px;
}
.sidebar h4 {
  color: #fff;
}
.sidebar .secondary {
  background-color: #334155;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
}
.main {
  margin-left: 260px;
  padding: 20px;
}
.album-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}
.album-card:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.album-actions {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
}
.album-card:hover .album-actions {
  display: block;
}
.album-img {
  height: 160px;
  object-fit: cover;
  width: 100%;
}