/* Body with subtle gradient background */
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #f0f4f8, #d9e2ec);
  margin: 0;
  padding: 0;
}

/* Header */
h1 {
  text-align: center;
  color: #2c3e50;
  margin-top: 20px;
  font-size: 2rem;
}

/* Form container */
form {
  max-width: 800px;
  margin: 30px auto;
  background-color: #c3e5f8;
  padding: 25px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
}

/* Form group fields */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: 600;
  color: #2d3436;
}

.form-group input,
.form-group select {
  padding: 12px;
  border: 1px solid #b2bec3;
  border-radius: 6px;
  width: 100%;
  font-size: 1rem;
}

/* Habit images row - increased size */
.habit-images {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
}

.habit-images img {
  width: 200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Footer section with dark blue paragraph */
.footer {
  max-width: 800px;
  margin: 40px auto;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: #1e3a8a; /* Dark blue for paragraph */
  font-size: 1rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.footer img {
  width: 180px;   /* You can increase this size */
  height: auto;   /* Keep aspect ratio */
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(223, 101, 101, 0.15);
}
.passport-photo {
  width: 120px; /* or whatever size you want */
  height: auto; /* maintain aspect ratio */
  border-radius: 8px;
}
.developer-section p {
  color: #003366; /* Dark blue or any color you prefer */
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

table, th, td {
  border: 1px solid #ccc;
}

th, td {
  padding: 10px;
  text-align: left;
  background-color: #fdfdfd;
}

