body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: Arial, sans-serif;

}
h1 {
  text-align: center;
}

form {
  margin-bottom: 20px;
  text-align: center;
}

input[type="text"] {
  padding: 8px;
  width: 300px;
}

button {
  padding: 8px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #45a049;
}

.downloads {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.download-item {
  margin: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  /* flex: 0 0 calc(33.33% - 20px); Adjust the width of each item here */
}

.download-item img {
  max-width: 100%;
  height: auto;
}

.delete-btn:hover {
  background-color: #d32f2f;
}

#downloadsContainerVideos video,
#downloadsContainerImages img,
#downloadsContainerPdf {
  max-width: 300px; /* Adjust the maximum width as needed */
  height: auto; /* Maintain aspect ratio */
  margin-bottom: 10px; /* Add margin between videos */
}

#downloadsContainerVideos,
#downloadsContainerAudios,
#downloadsContainerImages,
#downloadsContainerPdf {
    display: flex;
    flex-wrap: wrap;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

iframe{
  height:300px;
}

.content-wrapper audio,
.content-wrapper video,
.content-wrapper img {
  margin-right: 10px; /* Add space between audio/video and delete icon */
}

.delete-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  background-color: #f44336;
  margin-top: 5px;

}
.delete-btn i {
  margin-left: 5px; /* Adjust the value as needed to add desired space */
  margin-top: 2px;
}

/* HEader section #ec98a6 f0d666;*/
header {
  background-color: #38b6a5;
  color: black;
  padding: 10px 0;
  margin-top: 2px
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left,
.right {
  flex: 1;
  font-weight: bold;
}

.right {
  text-align: right;
  margin-left: 300px;
  padding-right: 10px; /* Add some padding to separate image from other content */
}

.right img {
  max-width: 100%; /* Ensure the image does not exceed the width of its container */
  max-height: 30px; /* Set maximum height for the image */
}

.middle {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.middle input[type="text"] {
  padding: 8px;
  width: 300px;
}

.middle button {
  margin-left: 5px;
  padding: 8px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.img{
  width: 70px;
  height: 20px;
}
marquee {
  background-color: #f0f0f0; /* Background color */
  color: rgb(255, 0, 157); /* Text color */
  padding: 10px; /* Padding */
  font-size: 18px; /* Font size */
  font-family: Arial, sans-serif; /* Font family */
}

h2{
  margin-left: 3%;
}

/* Responsive layout */
@media screen and (max-width: 600px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .left,
  .right,
  .middle {
    flex: 1;
  }

  .right {
    margin-left: 0;
  }
  .middle input[type="text"] {
    width: 100%;
  }

  .middle button {
    margin-left: 0;
    margin-top: 10px;
  }
}

