* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: white;
  background-color: black;
}

.main-div {
  margin-top: 30px;
  margin-bottom: 60px;
}

.header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.964);
  padding: 15px 20px 15px 10px;
  height: 30px;
  border-bottom: 1px solid black;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.header-div {
  display: grid;
  grid-template-columns: 30px 60px 1fr;
  align-items: center;
  font-size: 12px;

}

img {
  border-radius: 50%;
  height: 35px;
  border: 1px solid grey;
}

.profile-info {
  text-align: center;
  padding-top: 30px;

}


.profile-info-contact {
  font-size: 8px;
  margin-top: 3px;
  color: #F1F3F4;
}

.profile-info-date {
  font-size: 7px;
  margin-top: 3px;
  color: gray;
}

.payment-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 10px;

}

.sender-payment-box {
  width: 200px;
  height: 75px;
  background-color: #202124;
  padding: 16px;
  border: none;
  border-radius: 20px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: 10px;
  margin-bottom: 20px;

}
.receiver-payment-box {
  width: 200px;
  height: 75px;
  background-color: #202124;
  padding: 16px;
  border: none;
  border-radius: 20px;
  margin-top: 40px;
  margin-left: 10px;
  margin-right:auto ;
  margin-bottom: 20px;

}

.payment-box-amount {
  font-size: 1.4rem;
  margin: 10px;
}

.payment-box-paid-details {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 8px;

}



.footer-btn {
  display: grid;
  grid-template-columns: 50px 70px 1fr;
  column-gap: 10px;
  padding: 5px;
  position: fixed;
  background-color: black;
  width: 99%;
  bottom: 0;
  z-index: 10;

}

.pay-btn,
.req-btn {
  border: none;
  border-radius: 20px;
  padding: 5px 6px;
  background-color: skyblue;
  font-size: 12px;
  height: 40px;
  align-self: center;
  text-align: center;

}


.message-input {
  border: none;
  border-radius: 15px;
  padding: 5px 20px;
  background-color: #202124;
  color: grey;
  text-align: start;
  font-size: 12px;

}

