.audio-player {
  margin: 15px auto;
  padding: 15px;
  background-color: #f5f6f5;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: Arial, sans-serif;
}

.audio-player p {
  margin: 0 0 8px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
}

.audio-player audio {
  width: 100%;
  outline: none;
}

.audio-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.audio-controls button {
  background-color: #005f73;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.audio-controls button:hover {
  background-color: #003d4d;
}

.audio-player details {
  margin-top: 10px;
  text-align: left;
}

.audio-player summary {
  cursor: pointer;
  color: #005f73;
  font-size: 12px;
  font-weight: bold;
}

.audio-player summary:hover {
  text-decoration: underline;
}

.audio-player details p {
  font-size: 12px;
  color: #555;
  margin: 8px 0;
}

@media (max-width: 400px) {
  .audio-player {
    margin: 10px;
    padding: 10px;
  }

  .audio-player p {
    font-size: 12px;
  }

  .audio-controls button {
    padding: 6px 12px;
    font-size: 12px;
  }
}