
body {
  margin: 0;
  font-family: Arial, sans-serif;
  transition: all 0.3s ease;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #000;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dashboard {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  align-items: center;
}
.widget {
  background: transparent;
  color: white;
  padding: 0;
  border: none;
  box-shadow: none;
  font-size: 1.5rem;
  text-align: center;
}
.settings-panel {
  position: fixed;
  bottom: 80px;
  left: 20px;
  background: white;
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 12px;
  display: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}
select, input[type="color"], input[type="file"], input[type="text"] {
  width: 100%;
  padding: 6px;
  margin-top: 4px;
  font-size: 14px;
}
fieldset {
  margin-top: 15px;
  border: none;
}

#widget-search form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#widget-search input[type="text"] {
  border: none;
  background: transparent;
  color: white;
  outline: none;
  flex-grow: 1;
  font-size: 1rem;
}

#widget-search button {
  background: transparent;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
}

.donate-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  text-decoration: none;
  color: black;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
}
.donate-btn:hover {
  background: #ffdd00;
}

.settings-btn {
  position: fixed;
  bottom: 20px;
  left: 80px;
  background: transparent;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  color: white;
  box-shadow: none;
  z-index: 10;
}
.settings-btn:hover {
  color: #ffdd00;
}

