.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 30px rgba(10, 20, 40, 0.08);
}

.volume {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  color: #444;
  text-align: center;
  margin-bottom: 24px; /* Space between volume and buttons */
}

.controls {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

label {
  color: #444;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
}

button {
  display: flex;
  flex-direction: column; /* Stack image then text */
  align-items: center; /* Center horizontally */
  justify-content: center;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #ffffff !important;
  cursor: pointer;

  /* Adding 3D effect */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08); /* Shadow for depth */
  transition: all 0.2s ease; /* Smooth transition for hover effect */
}

/* Hover effect to simulate button press */
button:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
  transform: translateY(2px); /* Move the button slightly down */
}

/* Focus effect for better accessibility */
button:focus {
  outline: none; /* Remove default outline */
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2); /* Highlight focus state */
}

button img {
  display: block;
  margin-bottom: 8px; /* spacing between image and text */
}

button span {
  text-align: center;
  color: #444;
  margin-bottom: 8px;
}
