@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body {
    font-family: 'Poppins', sans-serif;
}

.btn-group-toggle .btn.active {
    background-color: #1f2b4b;
    color: #fff;
}

.btn-group-toggle .btn {
    border: none;
    margin: 0 5px;
}

.content {
    display: none;
}

.content.active {
    display: block;
}

/* upper css for cards button that changes it */

.card-container {
    background-color: #f8faff;
    border: 1px solid #dbe3f0;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    /* Ensure all cards have the same height */
}

.card-header-container {
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.badge-icon {
    width: 50px;
    height: 50px;
}

.reward-item img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
}

.divider {
    border-bottom: 1px solid #e0e6ed;
    margin: 15px 0;
}

.equal-height {
    min-height: 480px;
    /* Set a minimum height for all cards */
}


.signup-banner {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
    margin: 0 auto;
    /* Removed negative margin */
    position: relative;
    z-index: 1;
    /* Ensures it's above other content */
    /* margin-top: -80px; */
    /* Overlaps with the header */
}

.qr-code {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex-grow-1 {
    flex-grow: 1;
    /* Ensures this section takes up all available space */
}

.join-btn {
    background-color: #2f7cf6;
    color: #fff;
    font-weight: bold;
    padding: 12px 30px;
    margin-top: auto;
}
