.header-w{
  margin-top: 50px;
  font-size: 28px;
  font-weight: 700;
  font-family: "Sora", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.top-layout {
  background-color: #38E078;
  color: white;
  margin: auto;
  padding: 10px;
  min-height: 250px;
  margin-top: 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
}

.profile-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-top: 30px;
}

.profile-section .icon {
  font-size: 20px;
}

.profile-name {
  flex-grow: 1;
  text-align: center;
  text-align: left;
}

.profile-side{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.settings-icon {
  margin-left: auto;
}
.balance-section {
  text-align: center;
  min-height: 200px;
  border-radius: 16px;
  width: 95%;
  margin: auto;
  margin-bottom: 20px;
  background: linear-gradient(to top right, rgba(13, 40, 117, 0.5), rgba(26, 84, 246, 0));
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.main{
  font-family: "Sora", sans-serif;
  font-size: 12px;
  margin-top: 30px;
}
.balance {
  font-size: 2rem;
  margin-bottom: 40px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  margin-top: 10px;
}

.actions {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.action {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Sora", sans-serif;
}

.small-icon {
  font-size: 20px;
  display: block;
  margin: 0 auto 5px;
}

/*bank details section and card details section*/
.bank{
 min-height: 100px;
 width: 95%;
 margin: auto;
 margin-top: 10px;
 border-radius: 15px;
 background: rgba(36, 36, 37, 0.07);
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 align-items: center;
 margin-bottom: 30px;
}

.bank > img{
  width: 10%;
  margin-left: 20px;
  border-radius: 50%;
}

.bank > .bank-details{
  margin-right: 10px;
  font-size: 13px;
}

.manage{
  text-align: center;
  font-size: 15px;
  font-family: "Sora", sans-serif;
  color: #38E078;
  font-weight: 500;
}


.history{
  margin-top: 50px;
}

.h-text{
  font-size: 17px;
  font-weight: 500;
}

.bank-h{
  min-height: 100px;
  width: 95%;
  margin: auto;
  border-radius: 15px;
  background: rgba(36, 36, 37, 0.02);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
 }
 
 .bank-h > i{
   padding: 20px;
   margin-left: 20px;
   border-radius: 50%;
   background: white;
   font-size: 20px;
   color: red;
 }
 
 .bank-h > .bank-details{
   margin-right: 10px;
   font-size: 13px;
   color: black;
 }


 








 /* Modal overlay */
.wmodal {
  display: none; /* Hidden by default */
  position: fixed; 
  z-index: 1000; /* Ensure it's on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scrolling if needed */
  background-color: rgba(0, 0, 0, 0.5); /* Overlay effect */
}

/* Modal content */
.wmodal-content {
  position: relative;
  margin: 10% auto; /* Center it vertically */
  padding: 20px;
  background: #fff;
  width: 80%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease; /* Optional animation */
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* Modal button styling */
.wmodal-button {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.wmodal-content > button{
  background-color: #4CAF50;
  margin-top: 10px;
}
/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

 