.btn-verifymama {
    background: linear-gradient(to right, #005C42, #63D477);
    color: white !important;
    border: none; /* Remove default border */
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    padding: 10px 15px;
  }

  .btn-verifymama:hover {
    opacity: 0.9; /* Optional: Add a hover effect */
    color: white;

  }
  .gradient-icon {
    background: linear-gradient(to right, #005C42, #63D477); /* Gradient for the icon */
    -webkit-background-clip: text; /* Clip the gradient to the text */
    -webkit-text-fill-color: transparent; /* Make the text transparent to show the gradient */
    font-size: 22px; /* Ensure the icon size stays consistent */
    transition: background 0.3s ease-in-out; /* Smooth transition for gradient changes */
}





.btn-outline-verifymama {
    background-color: transparent;
    color: #0caf4a;
    display: inline-block;
    padding: 10px 15px;
    text-align: center;
    border: 2px solid #0caf4a;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.btn-outline-verifymama:hover {
    background-color: #0caf4a;
    color: white;
}





/* Primary button style */
.btn-primary {
    background-color: #007bff;
    color: white;
    border: 1px solid #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Outline button style */
.btn-outline-primary {
    background-color: transparent;
    color: #007bff;
    border: 1px solid #007bff;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: white;
}





.pagination .page-item.active .page-link {
    background: linear-gradient(to right, #005C42, #63D477); /* Apply the gradient */
    border-color: #005C42; /* Optional: change border color */
    color: white; /* Optional: set the text color */
}

.pagination .page-item .page-link {
    color: #005C42; /* Default text color */
    border-color: #ddd; /* Default border color */
}

.pagination .page-item .page-link:hover {
    background-color: #63D477; /* Hover effect (Optional) */
    color: white;
}










.wizard-card {
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
}

.image-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;

}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image fills the circle without stretching */
    object-position: center;
    /* Centers the image inside the circle */
}

.circle-img-container {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    /* Ensures the image is clipped within the circle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.card-title {
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
}


.price-badge {
    white-space: normal;
    text-overflow: clip;
    float: right;
    margin-top: 0px;
    padding: 5px 10px;
    background-color: #EED77D;
    color: #000;
    border-radius: 20px;
    font-size: 0.9rem;
    text-align: center;
    height: auto;
    width: auto;
    margin-left: auto;
    margin-right: 0;
}



.navbar-nav .nav-item a.activenav {
    color: #028239 !important; /* Green text color */
    font-weight: bold;
}

.vertical-menu {
    --vz-vertical-menu-bg: black;
    /* Sidebar-specific variable override */
    background-color: var(--vz-vertical-menu-bg) !important;
    /* Ensures it applies */
}

/* Primary button style */
.btn-primary {
    background-color: #007bff;
    color: white;
    border: 1px solid #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Outline button style */
.btn-outline-primary {
    background-color: transparent;
    color: #007bff;
    border: 1px solid #007bff;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: white;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

.badge {
    padding: 5px 10px;
    font-size: 0.9rem;
    border-radius: 5px;
}


/* 
            .button-ser {
                margin-top: 20px;
    
                height: 30px;
                width: 100%;
                border: none;
                border-radius: 10px;
                cursor: pointer;
                position: relative;
                overflow: hidden;
                transition: all 0.5s ease-in-out;
            }
    
    
    
            .button-ser .span {
                position: absolute;
                top: 0;
                padding: 10px;
                left: 0;
                height: 30px;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 18px;
    
                transition: all 0.5s ease-in-out;
            }
    
            .button-ser .text1 {
                background-color: #028246;
                color: #fff;
                font-size: 13px !important;
                transform: translateY(0) scale(1.2);
            }
    
            .button-ser .text2 {
                background-color: #028246;
                color: #fff;
                font-size: 14px !important;
                transform: translateY(50px);
            }
    
            .button-ser:hover .text1 {
                transform: translateY(-50px) scale(0) rotate(120deg);
            }
    
            .button-ser:hover .text2 {
                transform: translateY(0) scale(1.2);
            } */

.custom-margin {
    margin: 10px;
}

form {
    font-size: 10px;
    margin-bottom: 15px;
}

.custom-card {
    width: 400px;
    /* Set the desired width */
    height: 400px;
    /* Set the desired height */
    padding: 20px;
    border: 1px solid #007bff;
    /* Optional: custom border color */
    border-radius: 0.5rem;
    /* Optional: custom border radius */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Optional: shadow for effect */
}

.otp {
    display: none;
    /* Hide the div by default */
    margin-top: 10px;
    padding: 10px;
    /* border: 1px solid #ccc;
                background-color: #f9f9f9; */
}

.wallet-card {

    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.balance-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.balance-amount {
    font-size: 2rem;
    font-weight: bold;
}

.refresh {
    cursor: pointer;
    color: #3a83c4;
    text-decoration: underline;
}

.free-credits {
    color: red;
    font-size: 0.9rem;
}

.recharge-btn {
    background-color: #0caf4a;
    color: white;
}




.card-explore-btn {
    background-color: #0caf4a;
    color: white;

}

.tab-content {
    margin-top: 30px;
}

/* Custom active tab color */
.nav-tabs .nav-link.active {
    background-color: #0caf4a !important;
    color: white !important;
}

/* Optional: Adjust hover color for the tab links */
.nav-tabs .nav-link:hover {
    color: #171817 !important;
}

.nav-tabs .nav-link.active {
    background-color: #0caf4a !important;
    color: white !important;
}

.nav-tabs .nav-link:hover {
    color: #0caf4a !important;
}

.custom-card {
    width: 150px;
    /* Custom width */
    height: 400px;
    /* Custom height */
    border: 1px solid #ddd;
    padding: 20px;
    background-color: #f9f9f9;
    position: absolute;
    top: 20px;
    right: 20px;
}

.explore-btn {
    background-color: green;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.zoom-button {
    font-size: 16px;
    background: #028246;
    padding: 10px 10px;
    animation: zoomAnimation 2s infinite ease-in-out;

    &:hover {
        animation: none;

    }
}

@keyframes zoomAnimation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        /* Zoom in */
    }

    100% {
        transform: scale(1);
        /* Zoom out */
    }
}

.expolre {
    text-decoration: none;
    color: #fff;
}

.expolre:hover {
    color: black;
}


table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

.badge {
    padding: 5px 10px;
    font-size: 0.9rem;
    border-radius: 5px;
}


.navbar-nav .nav-item {
    color: white !important;
}


.navbar-nav .nav-item a {
    color: white !important;
    text-decoration: none !important;
}


.navbar-nav .nav-item a:hover {
    color: #f0f0f0 !important;
}

/* Primary button style */
.btn-primary {
    background-color: #007bff;
    color: white;
    border: 1px solid #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Outline button style */
.btn-outline-primary {
    background-color: transparent;
    color: #007bff;
    border: 1px solid #007bff;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: white;
}





/* Styling for the ellipsis box */
.page-item.ellipsis {
    cursor: pointer;
}

.page-item.ellipsis .page-link {
    background-color: #f8f9fa;
    /* Light background */
    border: 1px solid #ddd;
    /* Border to make it like a box */
    padding: 5px 10px;
    /* Padding inside the box */
    text-align: center;
    /* Align text inside the box */
    font-weight: bold;
    /* Make the '...' bold */
}

.page-item.ellipsis:hover .page-link {
    background-color: #007bff;
    /* Change background on hover */
    color: white;
    /* Change text color on hover */
}




.font-size-label{
    font-size: 12px !important;
}