 

body {
  margin: 0;
  background-color: #f6f6f9;
  color: #333;
}

.menu1 li.active {
  background: #193153;
  color: #fff;
  font-weight: bold;
}

.main-container {
  display: flex;
  flex-wrap: wrap;
  min-height: 80vh;
  padding: 20px;
  max-width: 1200px;
  margin-top: 70px;

}



.profile-section {
  text-align: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.profile-section img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.profile-section h3 {
  font-size: 16px;
  margin: 0;
}

.menu {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.menu li {
  padding: 10px 15px;
  border-radius: 5px;
  margin-bottom: 5px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.3s;
}

.menu li:hover {
  background-color: #f5f5f5;
}

.menu li.active {
  background-color: #ffeb3b;
  font-weight: bold;
}

/* Main Form Section */
.profile-content {
  flex: 1;
  margin-left: 20px;
}

.profile-card {
  background: white;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.profile-card h2 {
  margin-top: 0;
  font-size: 18px;
  margin-bottom: 20px;
}

.form1 {
  display: flex;
  flex-direction: column;
}

label {
  font-size: 14px;
  margin-bottom: 5px;
  color: #333;
}

.input1 {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.button-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.btn {
  background-color: #193153;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.btn:hover {
  background-color: #660066;
}

.find-btn {
  background-color: #193153;
}

.submit-btn {
  background-color: #193153;
}

.footer {
  background-color: #e9e7de;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px;
  font-size: 14px;
  color: #333;
}

.footer div {
  display: flex;
  align-items: center;
  margin: 10px;
  gap: 8px;
}


/* ====== SIDEBAR CSS (Only This Added) ====== */
/* ===== IMPROVED SIDEBAR (Only sidebar1 + menu1) ===== */

.sidebar1 {
  background-color: #ffffff;
  flex: 0 0 300px;        /* Sidebar को बड़ा किया */
  padding: 25px;          /* अंदर की spacing बढ़ाई */
  border-radius: 10px;    /* Rounded */
  box-shadow: 0 0 12px rgba(0,0,0,0.12);  /* Premium shadow */
  margin-bottom: 20px;
  height: fit-content;
}

.profile-section img {
  width: 90px;
  height: 90px;
}

.profile-section h3 {
  font-size: 18px;
  margin-top: 10px;
}

/* Sidebar Menu */
.menu1 {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.menu1 li {
  padding: 12px 18px;
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.menu1 li:hover {
  background-color: #f3f3f3;
}

.menu1 li.active {
  background: #193153;
  color: #fff;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 900px) {
  .sidebar1 {
    width: 100%;
    margin-bottom: 20px;
  }
}



@media (max-width: 900px) {
  .main-container {
    flex-direction: column;
  }

 

  .profile-content {
    margin-left: 0;
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
