@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

* {
    font-family: 'Geist', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgba(102, 112, 133, 0.4);
    scroll-behavior: smooth;
    width: 100%;
    height: 100vh;
}
/* DASHBOARD HEADER */
.dashboard_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 60px;
    padding: 10px 20px;
    background: white;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

#btn1 {
    display: block;
}

/* RIGHT SIDE OF HEADER */
.dashboard_right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-right: 10px;
}

/* NOTIFICATION ICON */
.notification i {
    font-size: 25px;
    color: rgba(102, 112, 133, 1);
    font-weight: 400;
    cursor: pointer;
    position: relative;
}

/* USER PROFILE CIRCLE */
.dashboard_right .user {
    width: 40px;
    height: 40px;
    background-color: #350364;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0e6ff;
    font-weight: 200;
    font-size: 13px;
}

/* DASHBOARD SIDEBAR */
.dashboard_sidebar {
    display: block;
    position: fixed;
    left: -100%;
    top: 0;
    width: 220px;
    height: 100vh;
    background-color: white;
    padding: 10px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: left 0.3s ease-in-out;
}

#active:checked ~ .dashboard_sidebar {
    left: 0;
}

.dashboard_sidebar .sidelinks {
    margin-top: 35px;
}

/* the checkbox is invisible */
.chckbtn {
    display: none;
}

.toggle_btn {
    cursor: pointer;
    display: none;
}
#btn1{
    opacity: 0;
}
.toggle_btn i {
    font-size: 25px;
    color: rgba(102, 112, 133, 1);
}

/* SIDEBAR LIST */
.dashboard_sidebar .side_top {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.side_top img {
    width: 85px;
    height: 18px;
}

.dashboard_sidebar ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.dashboard_sidebar ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    color: rgba(102, 112, 133, 1);
    transition: background 0.5s ease-in-out;
    margin-bottom: 15px;
}

.dashboard_sidebar ul li:hover {
    background: #f0f0f0;
    color: #3A006D;
}

.dashboard_sidebar ul li i {
    font-size: 24px;
}

.dashboard_sidebar ul li a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    color: rgba(102, 112, 133, 1);
    transition: all 0.5s ease-in-out;
}

.dashboard_sidebar ul li a:hover {
    color: #2d0452;
}

/* DASHBOARD CONTENT */
.dashboard_contents {
    margin-top: 50px;
    margin-left: 240px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
}

.dashboard_contents #toptxt {
    font-size: 19px;
    font-weight: 600;
    padding: 10px;
    color: rgba(0, 0, 0, 1);
}

.dashboard_top {
    display: flex;
    align-items: center;
    gap: 30px;
}

.dashboard_wallet, .dashboard_services {
    background-color: white;
    width: 100%;
    max-width: 30rem;
    border-radius: 16px;
    padding: 20px;
}

.wallet_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

.wallet_amount {
    display: grid;
    gap: 10px;
}

.wallet_amount p, #services_top_txt {
    font-size: 16px;
    font-weight: 600;
    color: rgba(102, 112, 133, 1);
    letter-spacing: 0.5px;
}

.wallet_amount h3 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(11, 13, 18, 1);
}

.wallet_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    border-radius: 13px;
    border: 1px solid rgba(102, 112, 133, 0.5);
    padding: 10px;
}


.wallet_icon i {
    font-size: 20px;
    color: rgba(72, 80, 94, 1);
}

.fund_button {
    padding-top: 35px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.fundbtn {
    padding: 10px 6rem;
    margin: 0;
    background-color: rgba(75, 6, 135, 1);
    color: white;
    border: none;
    /* width: 100%; */
    height: 56px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.5s ease;
}

.fundbtn:hover {
    background-color: #6a0dad;
    transform: scale(1.01);
}

/* SERVICES CONTAINER */
.services_container {
    display: flex;
    align-items: self-start;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    overflow-x: auto;
    position: relative;
}

.next_toggle {
    position: absolute;
    background-image: url(images/NEXT.png);
    background-size: cover;
    background-repeat: no-repeat;
    right: 0;
    top: 30%;
}
.next_toggle img{
    height: 54px;
    width: 54px;
}

.service1, .service2, .service3 {
    border-radius: 20px;
    width: 100%;
    max-width: 100%;
    height: 130px;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-top: 10px;
}

.service1 {
    background-color: rgba(253, 244, 230, 1);
}

.service2 {
    background-color: rgba(230, 247, 239, 1);
}

.service3 {
    background-color: rgba(230, 237, 253, 1);
}

.dashboard_history {
    background-color: white;
    width: 100%;
    max-width: 1000px;
    border-radius: 16px;
    height: 100%;
    margin-top: 20px;
    padding: 20px;
}

.search_container {
    border-radius: 20px;
    max-width: 300px;
    display: flex;
    align-items: center;
    margin: 10px 0;
    border: 1px solid rgba(102, 112, 133, 1);
}

.search_container input {
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    height: 40px;
    border-radius: 20px;
    color: rgb(12, 13, 15);
    font-size: 17px;
}

.search_container i {
    font-size: 25px;
    color: rgba(102, 112, 133, 1);
    /* margin-left: 5px; */
    cursor: pointer;
}
.history_container{
    width: 100%;
    border: 1px solid rgba(102, 112, 133, 1);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    aspect-ratio: 4/1;
}
/* General table styling */
table {
    width: 100%;
    border-collapse: collapse;  /* Collapse borders to avoid double borders */
}

/* Styling for table rows */
tr {
    display: flex;  /* Use flexbox for alignment (optional based on your design) */
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(208, 211, 217, 1);  /* Border at the bottom of each row */
}

/* Styling for table headers */
th {
    flex: 1;  /* Flex-grow to distribute space evenly */
    padding: 10px;
    text-align: left;
}

/* Styling for table cells */
td {
    flex: 1;  /* Flex-grow to distribute space evenly */
    padding: 10px;
    text-align: left;
}

/* Optional: Add specific styles for different rows */
tr.row1 {
    background-color: #f9f9f9;
}

tr.row2 {
    background-color: #ffffff;
}



 /* the users profile  */
 .users_profile_container {
    position: absolute;
    background-color: rgba(255, 255, 255, 1);
    max-width: 11rem;
    width: 100%;
    padding: 15px;
    border-radius: 20px;
    margin-top: -500px; /* Initially hide above the viewport */
    right: 3.5%;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.39);
    z-index: 1000;
    transition: margin-top 0.5s ease; /* Smooth transition for margin-top property */
}
.users_profile{
    /* padding: 10px; */
    display: grid;
}
.users_profile ul{
    list-style: none;
}
.users_profile ul li{
    color: rgba(102, 112, 133, 1);
    display: flex;
    align-items: center;
    padding-top: 8px;
}
.users_profile ul li a{
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    color: rgba(102, 112, 133, 1);
    letter-spacing: 0.8px;
}
.users_profile ul li i{
    font-size: 24px;
    font-weight: 400;
    padding-right: 5px;
}





/* Notifications Container */
.notifications-container {
    background-color: rgba(255, 255, 255, 1);
    max-width: 20rem;
    width: 100%;
    padding: 15px;
    border-radius: 20px;
    margin-top: -500px; /* Initially hide above the viewport */
    right: 7.5%;
    position: absolute;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.39);
    z-index: 1000;
    transition: margin-top 0.5s ease; /* Smooth transition for margin-top property */
}

.notifications-header{
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgb(74, 81, 94);
    padding-left: 10px;
}
.notifications{
    padding: 10px;
    border-bottom: 1px solid #f0e6ff;  
    line-height: 15px;
    transition: all 0.6s ease;
   
}
.notifications:hover{
    background-color: #ebd0ff;
    color: white;
    border-radius: 20px;
}
.notification_header{
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(11, 13, 18, 1);
    padding-bottom: 5px;
}
.notification_message{
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(102, 112, 133, 1);
    padding-bottom: 5px;
}
.notification_time{
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(102, 112, 133, 1);
}


/* services page styling */
.dashboard_services_page{
    display: flex;
    align-items: center;
    justify-content: center;
}
.services_lists{
    display: grid;
    grid-template-columns: repeat(3, 3fr);
    gap: 10px;
    width: 100%;
    height: 100%;
}
.services_card{
    height: 139px;
    background-color: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.services_card img{
    width: 96px;
}
.services_card a{
    font-size: 16px;
    font-weight: 600;
    color: rgba(11, 13, 18, 1);
    text-decoration: none;
}

/* for nin verification page */
.NIN_verification_page {
    background-color: white;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.NIN_verification_contents {
    justify-content: center;
    align-items: flex-start;
    padding: 15px;
    width: 100%;
}

#nin_verf {
    font-size: 16px;
    font-weight: 400;
    color: rgba(11, 13, 18, 1);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

#nin_opt {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 1);
    letter-spacing: 0.5px;
}

.verifcation_card_top {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
    width: 100%;
}

.verif_cardtops {
    max-width: 9rem;
    width: 100%;
    border-radius: 16px;
    border: 1.5px solid rgba(0, 0, 0, 1);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: rgba(11, 13, 18, 1);
    transition: all 0.5s ease;
    margin-bottom: 30px;
}

.verif_cardtops:hover {
    border-color: #ad7dda;
}

#slip_layout {
    font-size: 16px;
    font-weight: 400;
    color: rgba(11, 13, 18, 1);
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.slip_cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.slip {
    max-width: 14rem;
    width: 100%;
    border-radius: 16px;
    border: 1.90px solid rgba(0, 0, 0, 1);
    padding: 10px;
    display: grid;
    gap: 10px;
    text-align: flex-start;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: rgba(11, 13, 18, 1);
    transition: all 0.5s ease;
    margin-bottom: 30px;
}
.slip:hover {
    border-color: #ad7dda;
}

.slip_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

#Slip_price {
    font-size: 13px;
    font-weight: 500;
    color: rgba(102, 112, 133, 1);
    letter-spacing: 0.5px;
}

.slip img {
    width: 9rem;
    padding-left: 50px;
}
.accept_section{
    margin-top: 10px;
    display: flex;
    gap: 10px;
}
.accept_section input{
    width: 15px;
    margin: 0;
    outline: none;
}
#aceept_txt{
    font-size: 16px;
    font-weight: 400;
    color: rgba(102, 112, 133, 1);
    letter-spacing: 0.5px;
}
#Phone_text{
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 3px;
    color: rgba(11, 13, 18, 1);
}
#phone_input{
    padding: 10px;
    max-width: 17rem;
    border-radius: 10px;
    font-size: 15px;
    border: 1px solid rgba(102, 112, 133, 1);
    outline: none;
}
#verification_submit{
    font-size: 15px;
    color: white;
    font-weight: 400;
    background-color: #3A006D;
    border: none;
    padding: 10px;
    max-width: 15rem;
    letter-spacing: 0.5px;
    width: 100%;
    border-radius: 10px;
    margin: 20px 0;
    transition: all 0.5s ease-in-out;
}
#verification_submit a{
    text-decoration: none;
    font-size: 15px;
    color: white;
    font-weight: 400;
}
#verification_submit:hover{
    background-color: #160029;
}


/* for the verification download page */
.verification_download_background{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal {
    background: white;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}
.modal h2{
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
    text-align: start;
    margin-bottom: 20px;
}
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 18px;
    cursor: pointer;
    color: #888;
}
.close-btn:hover {
    color: #000;
}
.profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    background-position: center;
    margin: 10px auto;
}
.name {
    font-size: 19px;
    font-weight: 600;
    margin-top: 10px;
}
.details {
    text-align: left;
    margin-top: 15px;
    font-size: 14px;
}
.details div {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 10px 0;
    padding-right: 20px;
    font-size: 14px;
    font-weight: 300;
    color: rgba(11, 13, 18, 1);
    letter-spacing: 0.5px;
    border-bottom: 1px solid #eee;
}
/* .details div:last-child {
    border-bottom: none;
} */
.details span {
    font-size: 14px;
    font-weight: 600;
    color: rgba(102, 112, 133, 1);
    letter-spacing: 0.5px;
    
  
}
.download-btn {
    width: 100%;
    background:rgba(75, 6, 135, 1);
    color: white;
    padding: 16px;
    border-radius: 16px;
    border: none;
    margin-top: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    transition: all 0.5s ease-in-out;
}
.download-btn svg {
    margin-left: 8px;
}
.download-btn:hover {
    background:rgb(51, 3, 95);
}

/* BVN Verification */
#BVN_input{
    padding: 15px;
    display: block;
    border-radius: 13px;
    font-size: 16px;
    outline: none;
    max-width: 20rem;
    width: 100%;
    /* border: 1px solid rgba(208, 211, 217, 1); /*for submitted message */
    border: 1px solid red;
    margin-top: 10px;
}
#bvn_error{
    color: red;
    font-size: 14px;
    letter-spacing: 0.6px;
    padding-top: 7px;
}


    /* ⚠️⚠️⚠️this is the BVN notification bar at the top 
    (set display to none to make it invisible --- and display flex to make it visible )*/
    .BVN_notification_bar{
        display: none;
        align-items: center;
        justify-content: center;
        border: 1px solid #ffffff;
        max-width: 320px;
        width: 100%;
        border-radius: 20px;
        padding: 10px;
        background: rgba(230, 247, 239, 1);
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
        right: 7%;
        top: 6%;
        position: absolute;
        z-index: 1000;
    }
    .BVN_notification_content{
        display: flex;
        gap: 10px;
    }
    .checked img{
        width: 50px;
    }
    .BVN_notification_message{
        max-width: 230px;
        width: 100%;
        padding-bottom: 5px;
    }
    .BVN_notification_message h3{
        font-size: 16px;
        font-weight: 600;
        color: rgba(0, 0, 0, 1);
        letter-spacing: 0.5px;
    }
    .BVN_notification_message p{
        font-size: 13px;
        font-weight: 400;
        letter-spacing: 0.5px;
        color: rgba(138, 144, 156, 0.8);
    }
    .cancel_icon i{
        font-size: 25px;
        font-weight: 400;
    }

    /* for bvn error notification */
    /* ⚠️⚠️⚠️this is the BVN notification bar at the top 
    (set display to none to make it invisible --- and display flex to make it visible 
    then set bvn outline to red)*/
    .BVN_notification_error_bar{
        display: block;
        align-items: center;
        justify-content: center;
        border: 1px solid #ffffff;
        max-width: 320px;
        width: 100%;
        border-radius: 20px;
        padding: 10px;
        background: rgba(254, 235, 237, 1);
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
        right: 7%;
        top: 6%;
        position: absolute;
        z-index: 1000;
    }
    .BVN_notification_error_content{
        display: flex;
        gap: 10px;
    }
    .error_checked img{
        width: 50px;
    }
    .BVN_notification_message_error{
        max-width: 230px;
        width: 100%;
        padding-bottom: 5px;
    }
    .BVN_notification_message_error h3{
        font-size: 16px;
        font-weight: 600;
        color: rgba(0, 0, 0, 1);
        letter-spacing: 0.5px;
        margin-bottom: 5px;
    }
    .BVN_notification_message_error p{
        font-size: 13px;
        font-weight: 400;
        letter-spacing: 0.5px;
        color: rgba(138, 144, 156, 0.8);
    }
    .cancel_icon i{
        font-size: 25px;
        font-weight: 400;
    }

    /* for CAC verification page */
#cac_number_text{
    font-weight: 400;
}
#cac_input{
    padding: 10px;
    max-width: 20rem;
    width: 100%;
    border-radius: 10px;
    font-size: 15px;
    border: 1px solid rgba(102, 112, 133, 1);
    outline: none;
}

/* drivers licence verification page */
.licences{
    max-width: 22rem;
}
.phone_number{
    margin-bottom: 16px;
}

.upload-box {
    margin-top: 6px;
    width: 100%;
    max-width: 300px;
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #333;
}

#upload-icon {
    font-size: 24px;
}

.file-size {
    font-size: 12px;
    color: gray;
}

#upload-input {
    display: none;
}

/* service history page */
.History_page {
    background-color: white;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    width: 100%;
    max-width: 1200px;
    min-width: 200px;
    padding: 15px;
    margin: 0 auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Search Box */
.search-box {
    display: flex;
    align-items: center;
    border: 1px solid rgba(208, 211, 217, 1);
    padding: 5px;
    border-radius: 20px;
    margin: 20px 0;
    max-width: 20rem;
    width: 100%;
    min-width: 200px;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 8px;
    background: transparent;
    outline: none;
    font-size: 16px;
    min-width: 0;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
}
.search-btn i {
    font-size: 20px;
    color: rgba(208, 211, 217, 1);
    padding-right: 5px;
}

/* Table Styling */
.history_table-container {
    width: 100%;
    max-width: 100%;
    overflow-x: auto; 
    border-radius: 10px;
}

.history_table-container table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    table-layout: auto; 
    word-wrap: break-word;
    background-color: white;
}

.history_table-container th, 
.history_table-container td {
    padding: 12px;
    text-align: center;
    white-space: nowrap; 
}

.history_table-container th {
    font-size: 16px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.7);
    /* background-color: rgba(75, 6, 135, 0.1); */
}

.history_table-container td {
    font-size: 16px;
    font-weight: 400;
    color: rgba(102, 112, 133, 1);
}

.no-history {
    display: none;
}

.no-history img {
    width: 8rem;
    opacity: 1;
    display: block;
    margin: 0 auto;
}

.download-btn {
    background-color: rgba(75, 6, 135, 1);
    color: white;
    border: none;
    padding: 10px 12px;
    border-radius: 52px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}
.download-btn i{
    padding-left: 5px;
    font-size: 14px;
}

.download-btn:hover {
    background-color: #6e12d8;
}

/* transaction history page stying */
.status_btn{
    outline: none;
    border: none;
    color: none;
    background-color: none;
    padding: 0;
    border-radius: 52px;
}
#Status{
    border-radius: 60px;
    /* max-width: 10rem; */
    width: 100%;
}



/* my profile styling */
.form-container {
    background: white;
    padding: 10px;
    max-width: 600px;
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
}
.form_top{
    display: flex;
    gap: 4rem;
    margin-bottom: 10px;
}
.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
    color: rgba(0, 0, 0, 1);
}
.form-group input {
    width: 100%;
    padding: 20px 20px;
    border: 1px solid #ccc;
    border-radius: 16px;
    font-size: 16px;
    color:  rgba(102, 112, 133, 1);
    letter-spacing: 0.5px;
    max-height: 56px;
    height: 100%;
    outline: none;
}
.form-group input:read-only {
    background: #e0e0e0;
    color: #666;
}
.submit-btn {
    width: 100%;
    padding: 20px 10px;
    background: rgba(75, 6, 135, 1);
    color: white;
    border: none;
    outline: none;
    border-radius: 16px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}
.submit-btn:hover {
    background: rgb(37, 2, 68);
}



/* the change password  page*/

.password-change-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.input-group {
    margin-bottom: 15px;
    position: relative;
}
.input-group label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
    color: rgba(0, 0, 0, 1);
}
.input-group input {
    width: 100%;
    padding: 20px 20px;
    border: 1px solid #ccc;
    border-radius: 16px;
    font-size: 16px;
    color:  rgba(102, 112, 133, 1);
    letter-spacing: 0.5px;
    max-height: 56px;
    height: 100%;
    outline: none;
}
.input-group .toggle-password {
    position: absolute;
    right: 15px;
    top: 42px;
    cursor: pointer;
}
.toggle-password i{
    font-size: 22px;
    color: rgba(133, 141, 157, 1);
}
.update-button {
    width: 100%;
    padding: 20px 10px;
    background: rgba(75, 6, 135, 1);
    color: white;
    border: none;
    outline: none;
    border-radius: 16px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}
.update-button:hover {
    background: #360063;
}


.table_bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}
.page_number p{
    font-size: 12px;
    color: rgba(102, 112, 133, 1);
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 5px;
}
.pagination button {
    background-color: #f0f0f0;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}
.pagination button.active {
    background-color: #4a148c;
    color: white;
}
.pagination button:hover {
    background-color: #ddd;
}
.pagination button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}























/* Media Queries */
@media (min-width: 1024px){
    #btn1{
        opacity: 1;
    }
    .fundbtn {
        padding: 10px 10rem; 
    }
    .dashboard_sidebar{
        left: 0;
    }
}
@media (max-width: 1024px) {
    #btn1{
        opacity: 1;
    }
    .dashboard_contents {
        margin-left: 0;
        padding: 10px;
    }

    .dashboard_top {
        flex-direction: row;
        gap: 20px;
    }

    .dashboard_wallet, .dashboard_services {
        max-width: 100%;
    }

    .dashboard_wallet {
        max-width: 100%;
    }

    .service1, .service2, .service3 {
        width: 100%;
        max-width: none;
    }

    .fundbtn {
        width: 100%;
        max-width: none;
    }

    .toggle_btn {
        display: block;
    }
    
}

@media (max-width: 768px) {
    #btn1{
        opacity: 1;
    }
    .dashboard_header {
        height: 60px;
    }

    .dashboard_contents {
        margin-top: 60px;
        margin-left: 0;
        padding: 10px;
        width: 100%;
        max-width: 670px;
    }

    .dashboard_top {
        flex-direction: row;
        overflow: hidden;
        max-width: 100%;
        overflow-x: auto;
    }

    .dashboard_wallet, .dashboard_services {
        width: 100%;
        max-width: 100%;
    }

    .service1, .service2, .service3 {
        width: 100%;
    }

    .fundbtn {
        width: 100%;
        max-width: none;
    }

    .toggle_btn {
        display: block;
    }
    .services_lists{
        display: grid;
        grid-template-columns: repeat(2, 4fr);
        gap: 10px;
    }
    /* for nin verification */
    .verifcation_card_top {
        flex-direction: row;
        align-items: center;
    }

    .slip_cards {
        /* flex-direction: column; */
        display: grid;
        grid-template-columns: repeat(2, 2fr);
        width: 100%;
        align-items: center;
    }

    .slip {
        padding: 10px;
        max-width: 100%;
    }

    .slip img {
        width: 100%;
        height: 90px;
        padding-left: 0;
    }
    
   
    .history_table-container th,
    .history_table-container td {
        font-size: 14px; /* Adjusted font size for readability */
    }

    .history_table-container th,
    .history_table-container td {
        padding: 12px 8px; /* Adjust padding for smaller screens */
    }

    .history_table-container th {
        text-align: left;
    }

    .history_table-container td {
        text-align: left;
    }
   
}

@media (max-width: 480px) {
    .dashboard_header {
        height: 70px;
    }
    .fundbtn {
        padding: 5px 0;
        width: 17rem !important;
    }

    .dashboard_contents {
        margin-top: 70px;
        margin-left: 0;
        padding: 10px;
        max-width: 100%;
    }

    .dashboard_top {
        flex-direction: row;
        max-width: 100%;
        overflow-x: auto;
    }

    .dashboard_wallet, .dashboard_services {
        width: 100%;
        max-width: 100%;
    }

    .services_container {
        flex-direction: row;
        gap: 10px;
        width: 100%;
       
    }

    .service1, .service2, .service3 {
        width: 700px;
        max-width: 100%;
    }

    .fundbtn {
        width: 100%;
        max-width: none;
    }

    .toggle_btn {
        display: block;
    }
    .services_lists{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    
    .slip_cards {
        /* flex-direction: column; */
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
        align-items: center;
    }
    #aceept_txt{
        font-size: 10px; 
    }

    .search-box {
        padding: 3px;
        border-radius: 15px;
    }

    .search-box input {
        font-size: 14px;
        padding: 5px;
    }

    .search-btn i {
        font-size: 18px;
    }
    #Status{
        width: 3.2rem;
    }
    .form_top{
        gap: 2rem;
    }

    .history_table-container {
        overflow-x: auto;
        max-width: 360px;
    }
    .download-btn {
        cursor: pointer;
        font-size: 10px;
        margin: 0;
        transition: 0.3s;
    }
    .pagination button {
        padding: 8px;
        font-size: 12px;
    }

    
}
@media (max-width: 428px) {
    .history_table-container {
        overflow-x: auto;
        max-width: 400px;
    }
}