body {
  background-image: url('/static/image/blog-header-dev-shop.png');
  margin: 0;
  padding: 0;

}

.top-header {
  display: flex;
  top: 0;
  margin: 0;
  justify-content: space-around;
  align-items: center;
  background-color: black;
  ;
  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%;
}

.dataframe {
  box-shadow: 10px 10px;
  /* background-color: white; */
  margin-left: auto;
  margin-right: auto;
  text-emphasis-color: black;
  font-size: 120%;
  height: 60%;
  width: 100%;
  border: 10px solid hsl(245, 13%, 35%);
  position: absolute;
  left: 50%;
  top: 18%;
  border-radius: 2vh;
  /* opacity: 95%; */
  background: rgba(255, 255, 255, 0.9)
}

p {
  color: black;
  font-size: 150%;
  text-align: left;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}

h1 {
  color: black;
  text-align: center;
  font-size: 3rem;
  text-shadow: 2px 2px 4px;
  margin-top: 5px;
}

th,
td {
  padding: 2%;
  width: 50%;
  text-align: center;
  font-weight: bolder;
  /* font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */


}

.form-body {
  height: 75vh;
}

.btn {
  width: 12vh;
  height: 5vh;
  background-color: black;
  float: right;
  border-radius: 2vh;
}

/* 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;
  font-family: sans-serif;

}

/* 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: absolute;
  bottom: 0px;
  font-size: 15px;
  /* margin: 2rem 0rem; */
  margin: 0;
  padding: 0;
  /* padding: 0px 5px; */
  letter-spacing: 0.5px;
  background-color: #dae4ffad;
}

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

}

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

}

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

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