/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
  }
  
  /* Header Section */
  .main-header {
    background-color: #666565; /* Light grey */
    padding: 20px;
    
    box-shadow: 0 4px 6px rgba(246, 113, 47, 0.1);
  }
  
  .main-header .logo-container {
    display: flex;
    align-items: center;
    gap: 350px; /* Ensures proper alignment across devices */
  }
  
  
  .main-header .logo {
    width: 100px; /* Increased size */
    height: 70px; /* Increased size */
    gap: 20px;
  }
  
  .main-header h1 {
    font-size: clamp(1.2em, 2vw, 1.8em); /* Dynamically adjusts font size */
    color: #f5b22c;
    margin: 0;
    font-weight: 600;
  }
  
  /* Donation Form Section */
  .donation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh ; /* Full screen height minus header */
    background: url('donate.jpg') no-repeat center center/cover;
  }
  
  .donation-form {
    background: rgba(0, 0, 0, 0); /* Transparent background */
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0);
    width: 100%;
    max-width: 400px;
    text-align: center;
    position: relative; /* Add this */
    top: -30px; /* Move the box 20px upward */
  }
  
  .donation-form input,
  .donation-form select,
  .donation-form textarea {
      background: rgba(255, 255, 255, 0.2); /* Uniform transparency */
      width: 100%;
      padding: 10px;
      margin: 10px 0;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 1em;
      box-sizing: border-box; /* Ensures padding doesn't affect width */
      color: #070707; /* White text for better visibility */
  }
  
  .donation-form input::placeholder,
  .donation-form textarea::placeholder {
      color: rgba(4, 4, 4, 0.7); /* Slightly lighter placeholder text */
  }
  
  .donation-form select {
      appearance: none;
      background: rgba(255, 255, 255, 0.2); /* Same transparency as inputs */
      color: rgba(4, 4, 4, 0.7); /* White text for options */
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"><polygon points="0,0 10,0 5,6" fill="#fff"/></svg>'); 
      background-repeat: no-repeat;
      background-position: right 10px center;
      background-size: 10px;
  }
  
  
  .donation-form label {
    display: block;
    font-size: 0.9em; /* Adjust font size */
    color: #413f3f; /* Label color */
    margin-bottom: 5px; /* Spacing between label and input */
    text-align: left; /* Align labels to the left */
    font-weight: bold; /* Make labels bold for better visibility */
}

  
  
  .donation-form button {
    margin-top: 20px; /* Add gap above the button */
    width: 100%;
    padding: 14px;
    background-color: #666565; /* Grey background */
    color: #f5b22c; /* Orange text */
    font-size: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

  
  .donation-form button:hover {
    background-color: #555555;
  }
  
  .donation-form button:active {
    transform: scale(0.98);
  }
  
	#dynamic-content {
  margin-top: 20px;
  text-align: left;
  font-size: 0.9em;
  color: #413f3f;
  background: rgba(255, 255, 255, 0.8);
  padding: 15px;
  border-radius: 5px;
  display: none; /* Initially hidden */
}

#dynamic-content table {
  width: 100%;
  border-collapse: collapse;
}

#dynamic-content table th,
#dynamic-content table td {
  border: 1px solid #ddd;
  padding: 8px;
}

#dynamic-content table th {
  background-color: #666565;
  color: #f5b22c;
}

#dynamic-content img {
  display: block;
  margin: 20px auto;
  width: 80%; /* Ensures responsiveness */
  max-width: 300px; /* Limits the maximum size */
  height: auto;
  border-radius: 8px;
}
  /* Responsive Design */
  @media (max-width: 768px) {
    .main-header h1 {
      font-size: 1.2em;
    }
  
    .donation-form {
      width: 90%;
      padding: 20px;
		top: -10px;
	
    }
	.main-header .logo-container{
		flex-direction:column;
		gap:10px;
	  }
	#dynamic-content {
    font-size: 0.8em;
  }

  #dynamic-content img {
    width: 90%; /* Adjust image width for smaller screens */
  }
	
  }
