/* =======================
   MST.css — Partial CSS utilized with drb.css
   ======================= */

    body {
      font-family: 'Roboto', sans-serif;
      background-color: #007f00;
      color: black;
      margin: 0;
      padding: 0;
    }

    header {
      background-color: #003300;
      color: silver;
      padding: 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    header nav a {
      color: Silver;
      margin: 0 1rem;
      text-decoration: none;
    }

    .hero {
      padding: 2rem;
      background-color: #f0f0f0;
      text-align: center;
    }

    .controls {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background-color: #007f00;
    }

    .controls select,
    .controls input {
      padding: 0.5rem;
      margin-right: 1rem;
    }

    .carousel {
      overflow-x: auto;
      white-space: nowrap;
      padding: 1rem 2rem;
    }

    footer {
      background-color: #000;
      color: Silver;
      padding: 2rem;
      text-align: center;
    }

.whisper-card {
  position: relative;
  width: 400px;
  height: 600px;
  margin-right: 1rem;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: inline-block;
  transition: transform 0.2s ease;
}

.whisper-card:hover {
  transform: scale(1.03);
}

.whisper-card .overlay {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.whisper-card .title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}

.whisper-card .text {
  font-size: 1.1rem;
  margin: 1rem 0;
  flex-grow: 1;
  line-height: 1.4;
}

.whisper-card .video-link {
  align-self: flex-start;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}
.whisper-card.edit-mode {
  width: 400px;
  height: 600px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  margin: 2rem auto;
}

.edit-mode form.overlay {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  justify-content: space-between;
}

form input,
form textarea,
form select {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 1rem;
  width: 100%;
  resize: none;
}

form input::placeholder,
form textarea::placeholder {
  color: rgba(255,255,255,0.7);
}

.save-btn {
  background-color: Silver;
  color: black;
  border: none;
  padding: 0.8rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}
