/* General styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}
.container {
  width: 90%;
  max-width: 800px;
  margin: 50px auto;
}

/* General Styles */

header {
  background-color: #007bff;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

header .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
}

header h2 {
  font-size: 1.5rem;
  margin: 10px 0;
  color: #fff;
}

header p {
  font-size: 1rem;
  margin: 10px 0;
  line-height: 1.6;
}

header p strong {
  color: #fff;
}

header p a {
  color: #ffd700;
  text-decoration: none;
}

header p a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  header h2 {
    font-size: 1.3rem;
  }

  header p {
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  header p strong {
    display: block;
    margin-top: 10px;
  }

  header p a {
    display: block;
    margin-top: 5px;
  }
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #007bff;
  /* background: #333; */
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 0rem;
}


/* Date Picker Section */
.date-picker-section {
  padding: 80px 20px;
  background-color: #1e1e76;
  /* background-color: #C1B5B5; */
  color: #fff;
  text-align: center;
  margin-top: 40px;
}

.date-picker-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 40px;
}

.date-picker-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.date-input {
  padding: 15px;
  font-size: 1rem;
  border: 2px solid #3498db;
  border-radius: 8px;
  background-color: #fff;
  color: #333;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.date-input:focus {
  border-color: #2980b9;
  box-shadow: 0 0 8px rgba(52, 152, 219, 0.6);
}

.submit-button {
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: #3498db;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-button:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
}

.submit-button:active {
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .date-picker-section h2 {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .date-picker-form {
    flex-direction: column;
    gap: 15px;
  }

  .date-input {
    width: 100%;
    max-width: 300px;
  }

  .submit-button {
    width: 100%;
    max-width: 300px;
  }
}