.form-container {
    background: #f8f8f8;
    border: 1px solid #ddd;
}

.media-item {
  position: relative;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background-color: white;
}

.media-item img, 
.media-item video {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.media-date {
  display: block;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  position: absolute;
  bottom: 0;
  right: 0;
}

.media-delete-control {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 3px 5px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.media-delete-control input[type="checkbox"] {
  margin: 0;
}

.delete-label {
  font-size: 0.75rem;
  color: #dc3545;
  margin: 0;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}