/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  background-color: var(--light);
  margin: 10% auto;
  padding: 25px;
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.3);
  animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.modal-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.close-modal {
  color: var(--gray);
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.close-modal:hover {
  color: var(--primary);
}

.sound-meta {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  color: var(--gray);
}

.sound-meta i {
  margin-right: 5px;
  color: var(--primary);
}


