html, body {
        font-family: 'Poppins', sans-serif;
        height: 100%;
        margin: 0;
        padding: 0;
    }

    a{
        text-decoration: none;
        color: unset;
    }

.yellowButton{
        background-color: rgba(255, 156, 1, 1);
        color: #ffffff;
        transition: 0.5s;
        width: 100%;
    }
    .yellowButton:hover{
        background-color: #ffffff;
        color: rgba(255, 156, 1, 1);
        transition: 0.5s;
        border: 1px solid rgba(255, 156, 1, 1);
        border-radius: 5px;
    }
    .yellowButton:hover i{
        color: rgba(255, 156, 1, 1);
    }
    .whiteButton{
        color: rgba(255, 156, 1, 1);
        background-color: #ffffff;
        transition: 0.5s;
        border: 1px solid rgba(255, 156, 1, 1);
    }
    .whiteButton:hover{
        color: #ffffff;
        background-color: rgba(255, 156, 1, 1);
        transition: 0.5s;
        border: 1px solid #ffffff;
        border-radius: 5px;
    }
    .bgGreen{
        background-color: #d8f1e2;
        padding: 20px 30px;
        border-radius: 8px;
    }
    .info-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; }
    .bankLogo{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .bankLogo img{
        width: 55px;
        height: 55px;
    }
    .logo-wrapper{
        position: relative;
        padding: 0 5px;
    }
    .logo-wrapper:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background-color: #ccc; /* divider color */
    }
    .amount{
        font-weight: 600;
        font-size: 30px;
        margin-bottom: 10px;
    }
    .amountWord{
        font-weight: 500;
        font-size: 15px;
    }
    .paymentSuccessMsg{
        font-weight: 600;
        font-size: 20px;
        color: #00c552;
    }
    .paymentPendingsMsg{
        font-weight: 600;
        font-size: 20px;
        color: orange;
    }
    .paymentFailedMsg{
        font-weight: 600;
        font-size: 20px;
        color: red;
    }
    .info-row .label {
        font-weight: 500;
        color: rgb(44, 45, 46);
    }
    .info-row .value {
        color: #000000;
        text-align: right;
    }
    .bg-pending{
        background-color: rgb(244, 220, 174);
    }
    .bg-faild{
        background-color: rgb(243, 202, 202);;
    }
    
.upload-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.upload-box {
  width: 90%;
  max-width: 700px;
  height: 300px;
  border: 2px dashed #ccc;
  border-radius: 10px;
  text-align: center;
  padding: 30px;
  margin: 60px 0;
  /* position: relative; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
  transition: border-color 0.3s;
}

.upload-box.dragover {
  border-color: #007bff;
}

.upload-icon {
  font-size: 32px;
  margin-bottom: 8px;
  color: #aaa;
}

.upload-text {
  font-size: 16px;
  margin-bottom: 12px;
  color: #777;
}

.upload-btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid #ccc;
  cursor: pointer;
  font-weight: bold;
}

#fileInput {
  display: none;
}
.topMenu{
    display: flex;
    justify-content: space-around;
    background-color: rgba(230, 231, 236, 1);
}
.topMenu a{
    padding: 15px;
    font-size: 18px;
    font-weight: 500;
}
.topMenu .active{
    color: rgba(255, 156, 1, 1);
    border-bottom: 2px solid rgba(255, 156, 1, 1);
}
#receiptContent, #receiptContentPending, #receiptContentFailed{
    width: 400px;
    margin: 0 auto;
}
.bg-container {
  position: relative;
  background-image: url('../images/bgWave.jpg');
  background-position: center;
  width: 100%;
  min-height: 100vh;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(255, 255, 255);
  opacity: 0.7; 
  z-index: 1;
}

.indexContent {
  position: relative;
  z-index: 2;
  width: 100%;
}
.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px;
}
.menu img{
    margin: 25px 0;
}
.indexContent .card-header{
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: rgba(34, 34, 52, 1);
    background-color: rgba(240, 244, 250, 1);
    padding: 15px 0;
}
.indexContent .card-body{
    padding: 70px 0;
}
.topHeader{
    background-color: rgba(240, 244, 250, 1);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
}
.topHeader h5{
    font-weight: 600;
    padding-left: 10px;
}