body {
  margin: 0;
  padding: 0;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;

}

.top-header {
  display: flex;
  top: 0;
  margin: 0;
  justify-content: space-around;
  align-items: center;
  background-color: #029ce3;
  ;
  padding: 10px 30px;
}

.connect-button {
  background-color: white;
  border-radius: 5px;
  box-shadow: #dae4ff 0px 4px 0px 0px;
  padding: 15px 10px;
  background-repeat: no-repeat;
  /* box-sizing: border-box; */
  width: 150px;
  height: 40px;
  color: #000;
  border: none;
  font-size: 15px;
  transition: all .3s ease-in-out;
  z-index: 1;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  outline: none;
  margin-left: 30px;
  cursor: pointer;
}

.connect-button::before {
  content: "";
  background-color: whitesmoke;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: width 700ms ease-in-out;
  display: inline-block;
}

.connect-button:hover::before {
  width: 100%;
}

.logo-center {
  /* flex-grow: 1; */
  display: flex;
  justify-content: center;
}

.logo-center img {
  width: 14%;
}

/* index.html part */
.header {
  margin: 0;
  top: 0;
  /* width: 100%; */
  height: 60px;
  background-color: #edf1fc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.header h1 {
  margin: 0;
  padding: 0;
  text-align: center;
  flex: 1;
  /* Take up available space */
  color: #029ce3;
}

.home-button {
  display: inline-block;
  background-color: #029ce3;
  color: white;
  border: none;
  padding: 8px 10px;
  border-radius: 5px;
  text-decoration: none;
  /* Remove default underline for links */
  cursor: pointer;
}

.hero-section {
  width: 100%;
}

.content {
  margin-top: 40px;
}

.content h2 {
  margin-left: 80px;
  margin-top: 30px;
  font-size: 40px;
  color: #029ce3;
}

.content p {
  margin-left: 80px;
  font-size: 20px;
  color: #434051;
  line-height: 30px;
}

.search-section {
  margin-left: 80px;
  margin-top: 50px;
}

.search-section p {
  font-weight: bold;
  color: #2e6d8c;
}

.Card {
  width: 350px;
  height: 150px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #e2e8f6;
}

.Card form {
  margin-top: 20px;
}


.upload-button {
  display: inline-block;
  padding: 8px 20px;
  background-color: #f0f0f0;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}

.upload-button input[type="file"] {
  display: none;
}

.button2 {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #029ce3;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.button2:hover {
  background-color: #0056b3;
}

.image-section {
  background-image: url("https://img.freepik.com/premium-vector/hiring-recruitment-career-management-flat-vector-illustration-isolated_605858-965.jpg?w=740");
  background-repeat: no-repeat;
  background-position: right;
  margin-top: -360px;
  margin-right: 60px;
  width: auto;
  height: 500px;
}

/* ---------------------------------------------------------------------------------------- */

/* index1.html part */
.card {
  border: 1px solid #edf1fc;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  margin-top: 20px;
  margin-bottom: 20px;
}

.dataframe {
  background-color: white;
  text-emphasis-color: white;
  font-size: 100%;
  height: auto;
  width: 100%;
  border-collapse: collapse;
  left: 60%;
  top: 30%;
  border: 2px solid black;
  /* table-layout: fixed; */
}

.dataframe tr:hover {
  background-color: #edf1fc;
}

th,
td {
  padding: 2%;
  width: 50%;
  text-align: center;
  line-height: 23px;
}

.fixed-height {
  width: auto;
  height: 100px;
  max-height: 200px;
  overflow-y: auto;
}

.dataframe td .fixed-height {
  max-width: 600px;
  max-height: 400px;
  overflow: auto;
}

/* table heading section */
.head {
  text-align: center;
  background-color: white;
  color: #029ce3;
  font-size: 23px;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;


}

/* popup form styles */
/* Popup container styles */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  overflow-y: auto;

}

/* Popup content styles */
.popup-content {
  background-color: #fff;
  margin: 1% auto;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 850px;
}

.close {
  position: relative;
  top: -10px;
  left: 820px;
  font-size: 20px;
  cursor: pointer;
  color: #999;
  font-size: 30px;
}

.close:hover {
  color: #000;
}

/* Form styles (you can customize these further) */
#contactForm {
  display: grid;
  gap: 15px;
  margin-left: 50px;
  margin-top: 20px;
}

.flex {
  display: flex;
  width: 93%;
  gap: 30px;
}

#input-text,
input[type="email"] {
  width: 90%;
  padding: 8px;
  border: none;
  border-bottom: 1px solid #ccc;
}

#input-text,
input[type="email"]:focus {
  outline: none;
}

input::placeholder {
  /* color: #04AA6D;  */
}

label {
  font-size: 12px;
}

select {
  height: 40px;
}

option {
  border-radius: 0px;
}

.message-textarea {
  resize: none;
  height: 100px;
  overflow-y: auto;
  width: 91%;
  padding: 5px;
  border-radius: 5px;
}

.message-textarea:focus {
  outline: none;
}

.form-submit-button {
  background-color: #000;
  color: #fff;
  padding: 10px 11px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  width: 90%;
}

.form-submit-button:hover {
  background-color: rgb(37, 36, 36);
}

.container {
  display: block;
  position: relative;
  padding-left: 28px;
  padding-right: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container a {
  text-decoration: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
}

.container:hover input~.checkmark {
  background-color: #ccc;
}

.container input:checked~.checkmark {
  background-color: #2196f3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container input:checked~.checkmark:after {
  display: block;
}

.container .checkmark:after {
  left: 7px;
  top: 2px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


/* footer  */
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: black;
  position: fixed;
  bottom: 0px;
  font-size: 15px;
  /* margin: 0rem 2rem; */
  padding: 5px 5px;
  letter-spacing: 0.5px;
  background-color: #edf1fc;

}

footer a {
  text-decoration: none;
  color: rgb(4, 79, 253);

}

footer .copyright {
  font-weight: 600;
  text-align: end;
  margin-top: 1rem;

}

footer .policy {
  text-align: justify;
  width: 70%;
  margin-top: 1rem;
  margin-left: 20px;
  line-height: 1.2rem;
  font-size: 15px;
}

#openFooterPopup {
  border: none;
  background-color: transparent;
  color: rgb(4, 79, 253);
  cursor: pointer;
}

/* remove scroll bar from body */
::-webkit-scrollbar {
  width: 5px;
  border-radius: 12px;
}

::-webkit-scrollbar-track {
  background: #e9eef3;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: none;
}