
/* CONTAINER (FLUID) */
.wallet-container {
  width: 100%;
  max-width: 1520px;
  padding: clamp(14px, 4vw, 24px);
}

/* HEADER */
.wallet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(14px, 3vw, 20px);
}

.wallet-user {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 12px);
}

.wallet-user img {
  width: clamp(36px, 8vw, 46px);
  height: clamp(36px, 8vw, 46px);
  border-radius: 50%;
}

.wallet-user-info h6 {
  font-size: clamp(13px, 3vw, 15px);
}

.wallet-user-info small {
  font-size: clamp(11px, 2.5vw, 13px);
  color: #fff;
}

.wallet-notification {
  font-size: clamp(18px, 4vw, 22px);
}

/* BALANCE CARD */
.wallet-balance-card {
  border-radius: clamp(14px, 4vw, 20px);
  padding: clamp(14px, 4vw, 22px);
  margin-bottom: clamp(16px, 4vw, 22px);
}

.wallet-balance-top {
  display: flex;
  justify-content: space-between;
  font-size: clamp(12px, 3vw, 14px);
  opacity: 0.9;
}

.wallet-balance-amount {
  margin: clamp(6px, 1.5vw, 10px) 0;
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 600;
  line-height: 1.2;
}

.wallet-card-number {
  font-size: clamp(11px, 2.4vw, 14px);
  font-weight: 500;
  letter-spacing: 1px;
  color: #f4f6f7;
  margin-top: 2px;
  white-space: nowrap;
  line-height: 1.2;
}

.wallet-card-expiry {
  font-size: clamp(11px, 2.4vw, 14px);
  font-weight: 500;
  color: #f4f6f7;
  margin-top: 2px;
}

.wallet-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(12px, 3vw, 14px);
}

.wallet-card-footer img {
  height: clamp(16px, 4vw, 20px);
}

/* ACTIONS */
.wallet-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.wallet-action-btn {
    background: #d53d6e;
    border: none;
    border-radius: 12px;
    padding: 12px 8px;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: 0.25s ease;
}

.wallet-action-btn:hover {
    background: #8b14b1;
}

.wallet-action-btn i {
    font-size: 18px;
      color: #fff;
}

.wallet-action-btn span {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
}

/* Tablets */
@media (max-width: 768px) {
    .wallet-actions {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .wallet-action-btn {
        padding: 10px 6px;
        border-radius: 10px;
        gap: 5px;
    }

    .wallet-action-btn i {
        font-size: 16px;
    }

    .wallet-action-btn span {
        font-size: 13px;
    }
}

/* Small phones */
@media (max-width: 400px) {
    .wallet-actions {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .wallet-action-btn {
        padding: 9px 5px;
        border-radius: 9px;
        gap: 4px;
    }

    .wallet-action-btn i {
        font-size: 15px;
    }

    .wallet-action-btn span {
        font-size: 12px;
    }
}
/* LARGE SCREENS */
@media (min-width: 1024px) {
  body {
    align-items: center;
  }

  .wallet-container {
    max-width: 600px;
  }
}





.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert h4 {
  margin-top: 0;
  color: inherit;
}

.alert .alert-link {
  font-weight: bold;
}

.alert > p,
.alert > ul {
  margin-bottom: 0;
}

.alert > p + p {
  margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}

.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

.alert-success hr {
  border-top-color: #c9e2b3;
}

.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}

.alert-info hr {
  border-top-color: #a6e1ec;
}

.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}

.alert-warning hr {
  border-top-color: #f7e1b5;
}

.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}

.alert-danger hr {
  border-top-color: #e4b9c0;
}

.alert-danger .alert-link {
  color: #843534;
}

.error {
		color: #FF0000;
		font-family:Century Gothic, Lucida Calligraphy;
		font-size:13px;
		}

.success {
  color: #fdfbfb;
  font-family:Century Gothic, Lucida Calligraphy;
  font-size:13px;
  }

    .okapi-wasb-button1{
        position: fixed;
        z-index: 9999999;
    }
        .okapi-wasb-button1{
            bottom: 200px;
            left: 15px;
        }
    .okapi-wasb-icon{
        opacity: 0.95;
        width: 150px;
        height: 150px;    
    }
    .okapi-wasb-icon:hover{
        opacity: 1;
    }



.Timeline {
  display: flex;
  align-items: center;
  height: 170px;
}

.event1,
.event2, .event3 {
  position: relative;
}

.event1Bubble {
  position: absolute;
  background-color: rgba(158, 158, 158, 0.1);
  width:200px;
  height: 60px;
  top: -70px;
  left: -15px;
  border-radius: 5px;
  box-shadow: inset 0 0 5px rgba(158, 158, 158, 0.64)
}

.event2Bubble {
  position: absolute;
  background-color: rgba(158, 158, 158, 0.1);
  width: 200px;
  height: 60px;
  left: -105px;
  top: 33px;
  border-radius: 5px;
  box-shadow: inset 0 0 5px rgba(158, 158, 158, 0.64)
}

.event1Bubble:after,
.event1Bubble:before,
.event2Bubble:after,
.event2Bubble:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-bottom: 0;
}

.event1Bubble:before {
  bottom: -10px;
  left: 13px;
  border-top-color: rgba(222, 222, 222, 0.66);
  border-width: 12px;
}

.event1Bubble:after {
  bottom: -8px;
  left: 13px;
  border-top-color: #F6F6F6;
  border-width: 12px;
}

.event2Bubble:before {
  bottom: 59px;
  left: 103px;
  border-top-color: rgba(222, 222, 222, 0.66);
  border-width: 12px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.event2Bubble:after {
  bottom: 57px;
  left: 103px;
  border-top-color: #F6F6F6;
  border-width: 12px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.eventTime {
  display: flex;
}

.DayDigit {
  font-size: 15px;
  font-family: "Arial Black", Gadget, sans-serif;
  margin-left: 10px;
  color: #4C4A4A;
}

.Day {
  font-size: 11px;
  margin-left: 5px;
  font-weight: bold;
  margin-top: 10px;
  font-family: Arial, Helvetica, sans-serif;
  color: #4C4A4A;
}

.MonthYear {
  font-weight: 600;
  line-height: 10px;
  color: #9E9E9E;
  font-size: 9px;
}

.eventTitle {
  font-family: "Arial Black", Gadget, sans-serif;
  color: #a71930;
  font-size: 11px;
  text-transform: uppercase;
  display: flex;
  flex: 1;
  align-items: center;
  margin-left: 12px;
  margin-top: -2px;
}

.time {
  position: absolute;
  font-family: Arial, Helvetica, sans-serif;
  width: 50px;
  font-size: 8px;
  margin-top: -3px;
  margin-left: -5px;
  color: #9E9E9E;
}

.eventAuthor {
  position: absolute;
  font-family: Arial, Helvetica, sans-serif;
  color: #9E9E9E;
  font-size: 8px;
  width: 100px;
  top: -8px;
  left: 63px;
}

.event2Author {
  position: absolute;
  font-family: Arial, Helvetica, sans-serif;
  color: #9E9E9E;
  font-size: 8px;
  width: 100px;
  top: 96px;
  left: -32px;
}

.time2{
  position: absolute;
  font-family: Arial, Helvetica, sans-serif;
  width: 50px;
  font-size: 8px;
  margin-top: -31px;
  margin-left: -5px;
  color: #9E9E9E;
}

.now{
     background-color: #004165;
    color: white;
    border-radius: 7px;
    margin: 5px;
    padding: 4px;
    font-size: 10px;
    font-family: Arial, Helvetica, sans-serif;
    border: 2px solid white;
    font-weight: bold;
    box-shadow: 0 0 0 2px #004165
}

.futureGray{
     filter: grayscale(1);
    -webkit-filter: grayscale(1);
  
}

.futureOpacity{
  -webkit-filter: opacity(.3);
  filter: opacity(.3);
  
}



.callout {
  border-radius: 0.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  background-color: #ffffff;
  border-left: 5px solid #e9ecef;
  margin-bottom: 1rem;
  padding: 1rem;
}

.callout a {
  color: #495057;
  text-decoration: underline;
}

.callout a:hover {
  color: #e9ecef;
}

.callout p:last-child {
  margin-bottom: 0;
}

.callout.callout-danger {
  border-left-color: #bd2130;
}

.callout.callout-warning {
  border-left-color: #d39e00;
}

.callout.callout-info {
  border-left-color: #117a8b;
}

.callout.callout-success {
  border-left-color: #1e7e34;
}


.user-login {
  height: 100%;
  width: 100%;
}

.user-login .block {
  display: flex;
}

@media (max-width: 768px) {
  .user-login .block {
    flex-wrap: wrap;
  }
}

.user-login .block .image {
  flex-basis: 100%;
  margin-right: 40px;
}

@media (max-width: 768px) {
  .user-login .block .image {
    flex-grow: 1;
    text-align: center;
    margin-bottom: 30px;
    margin-right: 0;
  }
}

.user-login .block .image img {
  border-radius: 8px;
}

.user-login .block .content {
  flex-basis: 100%;
  align-self: center;
  padding: 50px;
  border: 1px solid #cccccc;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .user-login .block .content {
    flex-grow: 1;
  }
}

.user-login .block .content .logo {
  margin-bottom: 80px;
}

@media (max-width: 992px) {
  .user-login .block .content .logo {
    margin-bottom: 40px;
  }
}

.user-login .block .content .title-text {
  margin-bottom: 35px;
}

.user-login .block .content .title-text h3 {
  padding-bottom: 20px;
  border-bottom: 1px solid #cccccc;
}

.user-login .block .content .new-acount {
  margin-top: 20px;
}

.user-login .block .content .new-acount p, .user-login .block .content .new-acount a {
  font-size: 14px;
}

.user-login .block .content .new-acount p a {
  color: #000;
}




.section-title.waviy {
	position: relative;
	-webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0,0,0,.2));
	font-size: 1.9vw;
  color: #151414;
  font-family: 'Cooper Black';
  font-weight: 800;
   /* line-height: 26.4px;  */
  }

  @keyframes waviy {
	0%,40%,100% {
	  transform: translateY(0)
	}
	20% {
	  transform: translateY(-20px)
	}
  }



/* whatsapp */

.whatsapp {
  position: fixed;
  bottom: 0;
  left: 5px;
  z-index: 999;
}

.whatsapp .icon {
  cursor: pointer;
  margin-bottom: 20px;

}



.whatsapp .whatsapp-max {
  display: none;
  width: 300px;

}

@media only screen and (max-width:600px) {
  .whatsapp .whatsapp-max {
      width: 95vw;
      /* height: 100vh; */

  }


}


.whatsapp-heading {
  background: #075e54;
  /* border-radius: 10px 10px 0px 0px; */
  margin: auto;

}

.whatsapp-chat-btn span {
  color: white;
  background: #075e54;
  padding: 5px 10px;
  border-radius: 50px;
  cursor: pointer;
}

.whatsapp-main {
  background: url('/public/assets/imgs/whatsapp-bg.jpg');
}

.whatsapp-main {
  border: solid #075e54 1px;
  border-radius: 10px 10px 0px 0px;
  overflow: hidden;
}

.whatsapp-heading-text {
  color: #fefefe;
  font-size: 13px;
}

.whatsapp-logo img,
.icon img {
  border-radius: 50%;
  width: 50px;
}

.whatsapp-heading,
.whatsapp-message-body,
.whatsapp-chat-btn {
  padding: 10px;

}

.whatsapp-heading-text,
.whatsapp-logo {
  display: inline-block;

}


.whatsapp-message-body p {
  background: #DCF8C6;
  padding: 10px;
  border-radius: 10px;
  margin-right: 20%;
  font-size: 11px;
}

.whatsapp-message-body textarea {
  background: white;
  padding: 10px;
  border-radius: 10px;
  margin-left: 20%;
  font-size: 11px;
  width: 80%;
  margin-top: 5px;
}

.whatsapp-message-body textarea:focus {
  border: solid #075e54 1px;
  outline: none;
}



.whatsapp-chat-btn {
  text-align: center;
  background: inherit;
}

.whatsapp-close-btn {
  margin-top: 5px;
}

.whatsapp-close-btn svg {
  color: #075e54;
  border: solid 1px #075e54;
  border-radius: 50%;
  padding: 5px;
  width: 50px;
  height: 50px;
  margin: auto;
  background: white;
  text-align: center
}

.whatsapp-close-btn {
  text-align: center;
}

#whatsapp-time-1,
#whatsapp-time-2 {
  display: block;
  text-align: right;
  font-weight: bold;
}

#whatsapp-message-error {
  color: red;
  margin-left: 20%;
  font-style: italic;
}

.whatsapp-main-inner {
  background: rgb(0, 0, 0, 0.5);
  /* opacity: 0.3; */
}

.head h2{
  font-size: 20px;
  font-weight: 400;
  color: #00e0d3;
  padding: 6px 5px;
  margin: 0px;
  background: linear-gradient(45deg, #013969, transparent);
}








.calci{
  position: relative;
  border-radius: 5px;
  padding: 12px 11px;
  background: url(../images/calci_bg.png);
  background-size: 100% 100%;
}
.calci:hover ul{
animation: 2.5s cubic-bezier(.25, 1, .30, 1) circle-in-center both;
}


@keyframes circle-in-center {
from {
  clip-path: circle(0%);
}
to {
  clip-path: circle(125%);
}
}
.calci ul{
  padding: 15px 0px 0px 0px;
  margin: 0px;
}
.calci li{
  display: block;
  padding: 8px 0px 10px 0px;
}
.calci li:nth-child(3){
  display: inline-block;
  width: 46%;
}
.calci li:nth-child(4){
  display: inline-block;
  width: 46%;
  text-align: right;
  margin: 0px 0px 0px 9px;
}
.calci .calci_text{



}
.calci .calci_text h3{
  font-size: 14px;
  font-weight: 300;
  color: #d5d7d9;
  padding: 0px;
  margin: 0px 0px 6px 0px;
}
.calci .calci_text h4{
  margin: 0px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border: 1px solid transparent;
  background: linear-gradient(#01283a, #01283a) padding-box,linear-gradient(286deg, #00f87642 10%, #42b3de7a 89%) border-box;
  border-radius: 9px;
  padding: 7px 10px 7px 10px;
  outline: none;
}
.calci .calci_text select,input{
  border: none;
  outline: none;
  background: none;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.calci .calci_text select option{
  background:#001e36;
 font-size:13px;
 color:#00f873; 
}



.head h2{
  font-size: 20px;
  font-weight: 400;
  color: #00e0d3;
  padding: 6px 5px;
  margin: 0px;
  background: linear-gradient(45deg, #013969, transparent);
}
.calci{
  position: relative;
  border-radius: 5px;
  padding: 12px 11px;
  background: url(../images/calci_bg.png);
  background-size: 100% 100%;
}
.calci:hover ul{
animation: 2.5s cubic-bezier(.25, 1, .30, 1) circle-in-center both;
}


@keyframes circle-in-center {
from {
  clip-path: circle(0%);
}
to {
  clip-path: circle(125%);
}
}
.calci ul{
  padding: 15px 0px 0px 0px;
  margin: 0px;
}
.calci li{
  display: block;
  padding: 8px 0px 10px 0px;
}
.calci li:nth-child(3){
  display: inline-block;
  width: 46%;
}
.calci li:nth-child(4){
  display: inline-block;
  width: 46%;
  text-align: right;
  margin: 0px 0px 0px 9px;
}
.calci .calci_text{



}
.calci .calci_text h3{
  font-size: 14px;
  font-weight: 300;
  color: #d5d7d9;
  padding: 0px;
  margin: 0px 0px 6px 0px;
}
.calci .calci_text h4{
  margin: 0px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border: 1px solid transparent;
  background: linear-gradient(#01283a, #01283a) padding-box,linear-gradient(286deg, #00f87642 10%, #42b3de7a 89%) border-box;
  border-radius: 9px;
  padding: 7px 10px 7px 10px;
  outline: none;
}
.calci .calci_text select,input{
  border: none;
  outline: none;
  background: none;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.calci .calci_text select option{
  background:#001e36;
 font-size:13px;
 color:#00f873; 
}
.text_but{
  text-align: center;
  padding: 20px 0px 5px;
}
.text_but .but{
  background: linear-gradient(45deg, #44b3dd, #3ed30f);
  padding: 7px 55px;
  font-size: 15px;
  font-weight: 500;
  color: #012739;
  margin: 0px;
  border-radius: 5px;
  max-width: 200px;
  box-shadow:inset 0 0 0 0 #fff;
  transition: 0.8s;
}
.text_but .but:hover{
  box-shadow:inset 350px 0 0 0 #023968;
  color:#fff;
  transition: 0.8s;
}



/* Style the select dropdown */
select.form-select, select.custom-select {
    width: 100%;
    padding: 0.55rem 0.75rem;
    font-size: 1rem;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='16' height='16' fill='gray' class='bi bi-caret-down-fill' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.104 2.268 4 3.204 4h9.592c.936 0 1.319 1.104.753 1.658l-4.796 5.482a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem 1rem;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* Focus and hover effects */
select.form-select:focus, select.custom-select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.15rem rgba(0, 123, 255, 0.25);
}

/* Error state (optional) */
select.form-select.is-invalid, select.custom-select.is-invalid {
    border-color: #dc3545;
    box-shadow: none;
}

/* Optional spacing for flag image */
#countryFlag {
    margin-top: 0.4rem;
    border-radius: 4px;
    border: 1px solid #ddd;
}



            body {
              background: #f1f3f6;
              font-family: 'Segoe UI', sans-serif;
              padding-bottom: 70px;
            }

            .app-header {
              background: #fff;
              padding: 1.5rem 1rem 1rem;
              border-bottom: 1px solid #ddd;
              display: flex;
              align-items: center;
              gap: 1rem;
            }

            .user-photo-wrapper {
              background: linear-gradient(135deg, #d81b60, #ff4081);
              padding: 2px;
              border-radius: 50%;
              display: inline-block;
            }

            .user-photo {
              width: 55px;
              height: 55px;
              border-radius: 50%;
              object-fit: cover;
              border: 2px solid #fff;
              box-shadow: 0 4px 10px rgba(0,0,0,0.1);
              transition: transform 0.3s ease;
              background: #fff;
            }

            .user-photo:hover {
              transform: scale(1.05);
            }

            .app-header h2 {
              font-weight: 600;
              font-size: 1.4rem;
              margin-bottom: 0.2rem;
            }

            .account-card {
              background: #d81b60;
              color: #fff;
              border-radius: 14px;
              padding: 1rem 1.2rem;
              margin: 1rem 0;
              box-shadow: 0 6px 16px rgba(0,0,0,0.15);
            }

            .account-card small {
              opacity: 0.8;
            }

            .account-balance {
              font-size: 1.8rem;
              font-weight: bold;
            }

            .quick-actions {
              display: flex;
              justify-content: space-between;
              gap: 1rem;
              margin: 1.2rem 0;
            }

            .quick-action {
              background: #fff;
              border-radius: 12px;
              flex: 1;
              padding: 1rem 0.5rem;
              text-align: center;
              box-shadow: 0 4px 12px rgba(0,0,0,0.05);
              color: #333;
              font-size: 0.85rem;
              text-decoration: none;
            }

            .quick-action i {
              font-size: 1.6rem;
              margin-bottom: 0.3rem;
              color: #d81b60;
            }

            .quick-links-list {
              background: #fff;
              border-radius: 12px;
              padding: 1rem;
              box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            }

            .quick-links-item {
              display: flex;
              justify-content: space-between;
              margin-bottom: 1rem;
              font-size: 0.9rem;
            }

            .quick-links-item:last-child {
              margin-bottom: 0;
            }

            

         .chat-button {
    position: fixed; /* Keeps it in the same spot even when scrolling */
    bottom: 8%; /* Vertically centered */
    right: 10px; /* Distance from the right edge */
    transform: translateY(-50%); /* Perfect vertical centering */
    background-color: #027217; /* Button color */
    color: #fff; /* Icon/text color */
    width: 60px; /* Button width */
    height: 60px; /* Button height */
    border-radius: 50%; /* Makes it circular */
    display: flex; /* Flex for centering content */
    align-items: center; /* Vertical centering of icon/text */
    justify-content: center; /* Horizontal centering */
    font-size: 1.4rem; /* Icon size */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* 3D shadow effect */
    z-index: 999; /* Makes sure it stays above other elements */
    cursor: pointer; /* Shows pointer on hover */
    transition: transform 0.2s, box-shadow 0.2s; /* Smooth hover effect */
}


.chat-button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}











.bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #ddd;
        display: flex;
        justify-content: space-around;
        padding: 0.6rem 0;
        z-index: 1000;
        box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
    }

    .bottom-nav a {
        flex: 1;
        text-align: center;
        color: #444;
        font-size: 0.75rem;
        text-decoration: none;
    }

    .bottom-nav i {
        display: block;
        font-size: 1.4rem;
        margin-bottom: 0.1rem;
    }




/* Custom CSS for Bottom Navigation Bar */
/* Bottom Navigation Styling */
.bottom-nav {
    font-size: 0.85rem;
    background-color: #111827 !important; /* dark navy */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}


/* Nav Links */
.bottom-nav a {
    flex: 1;
    padding: 6px 0;
    color: #cbd5e1;
    transition: color 0.3s ease, transform 0.2s;
}

/* Active Link */
.bottom-nav a.active {
    color: #d81b60;
    font-weight: 600;
}

/* Hover Effect */
.bottom-nav a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

/* Icon Styling */
.bottom-nav i {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

/* Label/Text */
.bottom-nav small {
    display: block;
    font-size: 0.75rem;
    margin-top: -4px;
}

/* Tap Feedback */
.bottom-nav a:active {
    transform: scale(0.95);
}


  /* HEADER STYLING */
  .comp-plan-header {
    background-color: #001e3c;
    padding: 15px 25px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  .comp-plan-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .comp-plan-logo img {
    height: 50px;
    width: auto;
  }

  .comp-plan-logo span {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.2;
  }

  .comp-plan-title {
    text-align: right;
  }

  .comp-plan-title h2 {
    color: #a3ff00;
    font-size: 20px;
    margin: 0;
    font-weight: 700;
  }

  .comp-plan-title small {
    color: #ffffff;
    font-size: 14px;
  }

  @media (max-width: 576px) {
    .comp-plan-header {
      flex-direction: column;
      text-align: center;
      gap: 10px;
    }

    .comp-plan-title {
      text-align: center;
    }
  }

  /* CARD */
  .compensation-card {
    background: #07204a;
    border-radius: 0 0 12px 12px;
    padding: 20px;
    color: #d4ffba;
    box-shadow: 0 0 10px rgba(0, 255, 128, 0.15);
  }

  /* TABLE */
  .table thead th {
    background-color: #001d3d;
    color: #ffffff;
    text-align: center;
    font-size: 13px;
    padding: 8px;
  }

  .table tbody td {
    text-align: center;
    color: #00ffaa;
    font-weight: 500;
    padding: 8px;
  }

  .table tbody tr:hover {
    background-color: rgba(0, 255, 204, 0.05);
  }

  .info-box {
    background-color: #001d3d;
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.2);
    padding: 15px;
    border-radius: 10px;
  }

  .badge {
    font-size: 0.8rem;
    padding: 4px 10px;
  }

  .border-box {
    border: 1px solid #00ffcc;
    padding: 10px;
    font-size: 13px;
    transition: 0.3s ease;
  }

  .border-box:hover {
    background-color: #002e5a;
  }

  


.bottom-nav a {
flex: 1;
padding: 10px 0;
font-size: 1rem;
color:  #f1f1f1;
transition: background-color 0.2s ease-in-out, color 0.2s;
}

.bottom-nav a:hover {
    background-color: #f1f1f1;
}

.bottom-nav a.active {
    color: #f1f1f1;
}

.bottom-nav i {
    font-size: 1.7rem;  /* Increased icon size */
    line-height: 1.6;
}

.bottom-nav small {
    font-size: 0.85rem; /* Increased text size */
}

/* Glass effect for modal */
.glass-modal {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Gradient buttons */
.btn-gradient-success {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
}

.btn-gradient-info {
  background: linear-gradient(135deg, #0088cc, #1c9ed9);
  color: #fff;
}

.btn-gradient-success:hover,
.btn-gradient-info:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Glass-style buttons */
.btn-glass {
  border: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Close button outline */
.btn-outline-danger {
  color: #dc3545;
  border: 2px solid #dc3545;
  background-color: transparent;
}
.btn-outline-danger:hover {
  background-color: #dc3545;
  color: white;
}

/* Install Banner Styles */
#installBanner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  background: #07204a;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 10000;
  opacity: 0;
  transition: all 0.4s ease;
  border-radius: 0 0 10px 10px;
}

/* Desktop: top position */
#installBanner.top {
  top: -80px;
}
#installBanner.top.show {
  top: 0;
  opacity: 1;
}

/* Mobile: bottom position */
@media (max-width: 768px) {
  #installBanner {
    bottom: -80px;
    border-radius: 10px 10px 0 0;
  }
  #installBanner.show {
    bottom: 0;
    opacity: 1;
  }
}

#installBanner button {
  background: #fff;
  color: #07204a;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}
#installBanner button:hover {
  background: #f0f0f0;
}



.mgm-toast{
    position:fixed;
    right:20px;
    bottom:95px; /* stays above bottom nav */
    z-index:1050;

    display:flex;
    align-items:flex-start;
    gap:10px;

    background:#0f766e; /* success dashboard teal */
    color:#ecfeff;

    border-radius:12px;
    padding:12px 16px;
    max-width:340px;

    box-shadow:0 10px 25px rgba(0,0,0,.35);
    font-size:13px;
    font-family:inherit;

    animation:toastIn .4s ease;
}

.toast-icon{
    font-size:22px;
    color:#22c55e; /* success green */
    margin-top:2px;
}

.toast-text b{
    color:#ffffff;
    font-weight:600;
}

.toast-text strong{
    color:#bbf7d0;
    font-weight:700;
}

@keyframes toastIn{
    from{opacity:0; transform:translateY(10px);}
    to{opacity:1; transform:translateY(0);}
}

@media (max-width:768px){
    .mgm-toast{
        right:10px;
        left:10px;
        bottom:85px;
        max-width:unset;
        font-size:12px;
    }
}



/* Gradient button styles */
.btn-gradient {
  background: linear-gradient(135deg, #28a745, #1e7e34);
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.btn-gradient-info {
  background: linear-gradient(135deg, #17a2b8, #117a8b);
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-gradient-info:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.btn-gradient-primary {
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-gradient-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Icon hover animation */
.btn i {
  transition: transform 0.2s;
}
.btn:hover i {
  transform: translateX(5px);
}


.small-tabs {
    font-size: 0.85rem;
    flex-wrap: nowrap;       /* keep on one line */
}

.small-tabs .nav-link {
    white-space: nowrap;     /* prevent text wrapping */
}


        /* =========================================================
           RESPONSIVE FINANCE DASHBOARD
           Replaces the fixed Bootstrap column sizing used by the
           dashboard cards/actions.
        ========================================================== */

        .finance-dashboard,
        .finance-dashboard * {
            box-sizing: border-box;
        }

        .finance-dashboard {
            position: relative;
            width: 100%;
            min-width: 0;
            margin-top: 25px;
            margin-bottom: 12px;
            overflow: hidden;
            border-radius: 18px;
            background: linear-gradient(
              135deg,
              #ffffff 0%,
              #ffffff 45%,
              #ffffff 100%
          );

            color: #17202b;
        }

        /* Decorative background */
        .finance-dashboard::before {
            content: "";
            position: absolute;
            top: -30%;
            left: 35%;
            width: 30%;
            height: 150%;
            background: rgba(255,255,255,.04);
            transform: rotate(34deg);
            pointer-events: none;
        }

        .finance-dashboard::after {
            content: "";
            position: absolute;
            right: -15%;
            bottom: -45%;
            width: 55%;
            height: 100%;
            background: rgba(255,255,255,.025);
            transform: rotate(-30deg);
            pointer-events: none;
        }

        .finance-dashboard-inner {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1600px;
            margin: 0 auto;
            padding: clamp(20px, 3vw, 32px);
        }

        /* =========================================================
           TOP BALANCE
        ========================================================== */

        .finance-top-area {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 24px;
        }

        .balance-section {
            min-width: 0;
        }

       .balance-amount {
        font-size: clamp(24px, 3vw, 38px);
        line-height: 1.1;
        font-weight: 700;
        letter-spacing: -0.5px;
        margin-bottom: 6px;
        overflow-wrap: anywhere;
    }

        .balance-label {
            font-size: clamp(13px, 1.4vw, 16px);
            line-height: 1.2;
            font-weight: 500;
            color: #000;
        }

        /* =========================================================
           USER AREA
        ========================================================== */

        .dashboard-user-area {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            gap: 15px;
        }

        

        .dashboard-profile {
            width: 48px;
            height: 48px;
            flex: 0 0 48px;
            border-radius: 14px;
            border: 2px solid rgba(255,255,255,.9);
            background: linear-gradient(145deg, #e0d9cb, #9c968e);
            color: #17202b;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 25px;
            overflow: hidden;
            box-shadow: 0 3px 12px rgba(0,0,0,.12);
            padding: 0;
        }

        /* =========================================================
           SUMMARY CARDS
           Important: override Bootstrap .row/.col-4 so cards
           become a real responsive grid.
        ========================================================== */

        .finance-summary-row {
            display: grid !important;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px !important;
            margin: 0 0 28px !important;
        }

        .finance-summary-row > [class*="col-"] {
            width: auto !important;
            max-width: none !important;
            flex: none !important;
            padding: 0 !important;
            min-width: 0;
        }

        .finance-summary-card {
    width: 100%;
    min-width: 0;
    min-height: 82px;
    padding: 15px 18px;

    /* Modern outline */
    border: 1px solid rgba(213, 61, 110, 0.55);
    border-radius: 16px;

    /* Glass effect */
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    /* Subtle depth + pink glow */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 4px 18px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(213, 61, 110, 0.05);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.finance-summary-card:hover {
    transform: translateY(-3px);

    background: rgba(213, 61, 110, 0.08);

    border-color: #d53d6e;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 8px 24px rgba(0, 0, 0, 0.12),
        0 0 14px rgba(213, 61, 110, 0.18);
}

/* Optional icon styling */
.finance-summary-card i {
    color: #d53d6e;
    transition: transform 0.25s ease;
}

.finance-summary-card:hover i {
    transform: scale(1.08);
}

/* Mobile */
@media (max-width: 576px) {
    .finance-summary-card {
        min-height: 72px;
        padding: 12px 14px;
        border-radius: 14px;
    }
}

        .summary-title {
            font-size: 10px;
            line-height: 1.2;
            font-weight: 500;
            color: #000;
            margin-bottom: 7px;
        }

        .summary-value {
            font-size: clamp(12px, 2vw, 23px);
            line-height: 1;
            font-weight: 700;
            overflow-wrap: anywhere;
        }

        /* =========================================================
           QUICK ACTIONS
           Important: override Bootstrap .col-3 so actions can
           reflow automatically.
        ========================================================== */

        .finance-actions {
            width: 100%;
            padding: 0;
        }

        .finance-actions > .row {
            display: grid !important;
            grid-template-columns: repeat(4, minmax(110px, 1fr));
            gap: clamp(12px, 2vw, 28px) !important;
            margin: 0 !important;
        }

        .finance-actions > .row > [class*="col-"] {
            width: auto !important;
            max-width: none !important;
            flex: none !important;
            padding: 0 !important;
            min-width: 0;
        }

        .finance-action {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            min-width: 0;
            text-decoration: none;
            color: #fff;
            transition: transform .2s ease, opacity .2s ease;
        }

        .finance-action:hover {
            color: #fff;
            transform: translateY(-3px);
        }

        .finance-action-icon {
            position: relative;
            width: clamp(60px, 6vw, 82px);
            height: clamp(60px, 6vw, 82px);
            border-radius: clamp(16px, 2vw, 23px);
            background: #fff;
            color: #14448f;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(25px, 2.5vw, 34px);
            box-shadow: 0 8px 20px rgba(0,0,0,.08);
            margin-bottom: 9px;
        }

        .finance-action-icon > i {
            line-height: 1;
        }

        .finance-action-title {
            font-size: clamp(13px, 1.4vw, 16px);
            line-height: 1.2;
            font-weight: 600;
            color: rgba(255,255,255,.82);
            text-align: center;
        }

        /* =========================================================
           ACTION BADGES
        ========================================================== */

        .action-arrow,
        .action-plus {
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background: #fff;
            color: #2867c7;
            font-size: 17px;
            font-weight: 700;
        }

        .action-arrow {
            top: 3px;
            left: 50%;
            transform: translateX(-50%);
        }

        .action-plus {
            top: 3px;
            left: 3px;
            border: 2px solid #fff;
            box-shadow: 0 0 0 1px #2867c7;
        }

        .loan-icon {
            font-size: clamp(25px, 2.5vw, 34px);
        }

        .loan-icon::before {
            content: "";
            position: absolute;
            width: 64%;
            height: 64%;
            border: 2px solid #14448f;
            border-radius: 15px;
            transform: rotate(8deg);
        }

     
   
   .app-header-inner {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
}

/* Left side */
.app-header-left {
    flex-shrink: 0;
}

/* Right side */
.app-header-right {
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
}

/* Profile */
.app-header-user {
    margin-left: auto !important;
    margin-right: 0 !important;
}

/* Profile button */
.profile-button {
    padding: 5px 0 5px 10px;
    white-space: nowrap;
}

/* Avatar */
.profile-button img {
    transition: transform .2s ease;
}

.profile-button:hover img {
    transform: scale(1.05);
}

/* Dropdown */
.app-header-user .dropdown-menu {
    animation: dropdownFade .2s ease-in-out;
}

/* Dropdown items */
.app-header-user .dropdown-item {
    transition: all .2s ease;
}

.app-header-user .dropdown-item:hover {
    background-color: #f5f7fa;
    transform: translateX(2px);
}

/* Animation */
@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 575.98px) {

    .app-header-right {
        margin-left: auto !important;
    }

    .profile-button {
        padding-right: 5px;
    }

    .profile-button img {
        width: 38px;
        height: 38px;
    }

}


.wallet-social-btn {
    min-height: 46px;
    padding: 6px 12px;
    border-radius: 50px !important;
    gap: 4px;
}

.wallet-social-btn i {
    font-size: 18px;
    flex-shrink: 0;
    color: #fff !important;
}

.social-title {
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
   color: #fff !important;
    white-space: nowrap;
}

.social-desc {
    font-size: 8px;
    line-height: 1.2;
    color: #fff !important;
    margin-top: 2px;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .wallet-social-btn {
        min-height: 42px;
        padding: 5px 9px;
        border-radius: 50px !important;
    }

    .wallet-social-btn i {
        font-size: 16px;
    }

    .social-title {
        font-size: 9px;
    }

    .social-desc {
        font-size: 7px;
    }
}


  
            .invest-card {
                background: linear-gradient(145deg, #0f172a, #172033);
                border: 1px solid rgba(255,255,255,.06);
                border-radius: 10px;
                padding: 9px 10px;
                color: #fff;
                position: relative;
                overflow: hidden;
                transition: .2s;
            }

            .invest-card:hover {
                transform: translateY(-1px);
                box-shadow: 0 5px 15px rgba(0,0,0,.18);
            }

            .invest-card:before {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 2px;
                background: linear-gradient(90deg,#22c55e,#facc15);
            }

            .invest-label {
                font-size: 10px;
                color: #94a3b8;
                line-height: 1.2;
            }

            .invest-amount {
                font-size: 15px;
                font-weight: 700;
                color: #facc15;
                line-height: 1.2;
            }

            .invest-profit {
                font-size: 10px;
                color: #4ade80;
                font-weight: 600;
            }

            .invest-value {
                font-size: 11px;
                font-weight: 600;
                color: #fff;
            }

            .invest-badge {
                font-size: 9px;
                padding: 2px 6px;
                border-radius: 20px;
                font-weight: 600;
            }

            .badge-running {
                background: rgba(34,197,94,.12);
                color: #4ade80;
            }

            .badge-completed {
                background: rgba(239,68,68,.12);
                color: #f87171;
            }

            .invest-progress {
                height: 3px;
                margin-top: 7px;
                background: rgba(255,255,255,.07);
                border-radius: 20px;
            }

            .invest-progress .progress-bar {
                background: linear-gradient(90deg,#22c55e,#4ade80);
            }
        