  body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      background-color: #f8f9fa;
      color: #2c3e50;
    }

    .main-container {
      display: flex;
      flex-wrap: wrap;
    }

    /* Header */
    .header-container {
      background: linear-gradient(to right, #6a11cb, #2575fc);
      color: white;
      padding: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }


    .header-logo {
      font-size: 2em;
      font-weight: 700;
    }

    .header-center select {
      padding: 10px 15px;
      font-size: 1em;
      border-radius: 6px;
      border: none;
    }

    .header-right button {
      background-color: #72ff47ff;
      color: black;
      padding: 10px 15px;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }

    .header-right button:hover {
      background-color: #3be818ff;
    }

    /* Sidebar */
    .sidebar {
      background-color: #ffffff;
      width: 220px;
      padding: 20px;
      border-right: 1px solid #ddd;
    }

    .sidebar h3 {
      margin-top: 0;
      font-size: 1.2em;
    }

    .sidebar li {
      margin: 12px 0;
      cursor: pointer;
      padding: 5px 10px;
      border-radius: 4px;
      transition: background-color 0.2s;
    }

    .sidebar li:hover {
      background-color: #ecf0f1;
    }

    /* Main */
    .main {
      flex: 1;
      padding: 30px;
      text-align: center;
    }

    .sound-button {
      display: inline-block;
      margin: 10px;
      text-align: center;
      background: white;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      padding: 15px;
      transition: transform 0.3s ease;
      width: 180px;
    }

    .sound-button:hover {
      transform: scale(1.05);
    }

    .sound-button img {
      width: 80px;
      height: 80px;
      border-radius: 12px;
      object-fit: cover;
    }

    .sound-button span {
      display: block;
      margin-top: 10px;
      font-weight: 600;
      font-size: 1.1em;
    }

    .sound-button .animate {
      animation: pop 0.3s ease;
    }

    @keyframes pop {
      0% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.2);
      }

      100% {
        transform: scale(1);
      }
    }

    .actions {
      margin-top: 10px;
    }

       .actions button {
      margin: 0 5px;
      padding: 6px 10px;
      font-size: 1em;
      border: none;
      border-radius: 6px;
      background-color: #3498db;
      color: white;
      cursor: pointer;
      transition: 0.3s;
    }

    .actions button:hover {
      background-color: #2980b9;
    }

    /* Admin Page Form Styling */
    form {
      max-width: 500px;
      margin: 30px auto;
      background-color: #ffffff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: left;
      font-size: 1.2em;
    }

    form input[type="text"],
    form input[type="file"],
    form select {
      width: 100%;
      padding: 12px;
      margin-top: 6px;
      margin-bottom: 20px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }

    form input[type="submit"] {
      background-color: #2ecc71;
      color: white;
      padding: 12px 20px;
      border: none;
      border-radius: 6px;
      font-size: 1.1em;
      cursor: pointer;
      transition: 0.3s;
    }

    form input[type="submit"]:hover {
      background-color: #27ae60;
    }

    hr {
      margin: 40px 0;
    }

    .admin-sounds {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .admin-sounds .sound {
      background: #fff;
      padding: 15px;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      text-align: center;
      width: 200px;
    }

    .admin-sounds img {
      width: 100px;
      height: 100px;
      border-radius: 10px;
      object-fit: cover;
    }

    .admin-sounds button {
      margin-top: 10px;
      background: #e74c3c;
      border: none;
      padding: 8px 12px;
      border-radius: 6px;
      color: white;
      cursor: pointer;
    }

    input[type="text"]::placeholder {
      font-style: italic;
      color: #aaa;
    }

    /* 📱 Mobile Responsive Fixes */
    @media (max-width: 768px) {
      .main-container {
        flex-direction: column;
      }

      .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ddd;
      }

      .header-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
      }

      .header-center,
      .header-right {
        width: 100%;
        display: flex;
        justify-content: center;
      }

      .sound-button {
        width: 90%;
        margin: 10px auto;
      }

      .sound-button img {
        width: 100px;
        height: 100px;
      }

      input[type="text"] {
        width: 90% !important;
        padding: 14px !important;
        font-size: 1.2em !important;
        border-radius: 20px !important;
      }
    }

    /* 🌙 Dark Mode */
    body.dark-mode {
      background-color: #121212;
      color: #f1f1f1;
    }

    body.dark-mode .header-container {
      background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
      color: #fff;
    }
    
    /* Container */
    body.dark-mode .policy-container {
    background-color: #1F1F1F;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    }
    
        body.dark-mode h1,
    body.dark-mode h2 {
      color: #ffffff;
    }



    body.dark-mode .sidebar {
      background-color: #1e1e1e;
      border-color: #444;
    }

    body.dark-mode .sound-button {
      background-color: #1f1f1f;
      color: #f1f1f1;
      box-shadow: 0 6px 20px rgba(255, 255, 255, 0.05);
    }

    body.dark-mode .sound-button:hover {
      transform: scale(1.05);
    }

    body.dark-mode .header-right button {
      background-color: #00b938ff;
    }

    body.dark-mode form {
      background-color: #222;
      color: #eee;
    }

    body.dark-mode input,
    body.dark-mode select {
      background-color: #2c2c2c;
      color: #f1f1f1;
      border: 1px solid #444;
    }

    body.dark-mode input::placeholder {
      color: #aaa;
    }

    body.dark-mode .sidebar li:hover {
      background-color: #2a2a2a;
    }
    
    /*  body.dark-mode .policy-container {*/
    /*  background-color: #121212a;*/
    /*}*/
    
    img {
  width: 400px;
  height: 300px;
}

    .fav-button {
      color: green;
    }
            .footer {
  background-color: #1e2328;
  color: #ffffff;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-column h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #fff;
  border-bottom: 2px solid #444;
  padding-bottom: 6px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 14px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: #ffffff;
}

.app-badge {
  width: 140px;
  margin-top: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid #333;
  margin-top: 30px;
}

