#main-body {
    height: 100vh;
    /*background: linear-gradient(to right, #3498db, #2ecc71);  Blue to green gradient */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding-top: 60px; /* Adjust for navbar height */
}

#account-body {
    /*background: linear-gradient(to right, #3498db, #2ecc71);  Blue to green gradient */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding-top: 60px; /* Adjust for navbar height */
}

:root {
    --new-blue: 52,152,219;
}

#emailStatus, #slugStatus {
    font-size: 1rem;
}

.btn-new-primary {
    background-color: rgb(var(--new-blue)) !important;
    border-color: #3498db !important;
}
.btn-new-primary:hover {
    background-color: rgba(var(--new-blue),0.8) !important;
}

.card-influencer-container {
    margin-top: 720px !important;
    width: 70% !important;
}

/* Container for the two cards */
.card-container {
    display: flex;
    gap: 30px;
}

@media (max-width: 576px) {
    .card-container {
        flex-direction: column;
    }
    .profile-card {
        margin-top: 0 !important;
    }
    .card-influencer-container {
        width: 100% !important;
    }
    .card-influencer {
        max-width: 400px !important;
    }
}

/* Common card styling */
.card {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-influencer {
    max-width: 700px !important;
    margin-bottom: 120px;
}

.card-body {
    padding: 20px;
}

/* Card for amount selection */
.amount-card .card-title {
    text-align: center;
}

.amount-input {
    width: 100%;
    margin-bottom: 15px;
}

.amount-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.amount-buttons button {
    width: 30%;
}

.profile-card .card-title {
    text-align: center;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.bio {
    font-size: 14px;
    color: #555;
}

.payment-method-icon {
    width: 30px;
}

.profile-card {
    height: fit-content !important;
}

.profile-card, .amount-card, .payment-card {
    margin-bottom: 60px;
    min-width: 340px !important;
}

#cardExpiryMonth {
    width: 48px;
    margin-right: 8px;
}

#cardExpiryYear {
    width: 48px;
    margin-left: 8px;
}

#separatorDate {
    margin-top: 5px;
}

#cardCVV {
    width: 58px;
}

.social-link {

}

a.social-link:link, a.social-link:visited, a.social-link:hover, a.social-link:active {
  color: black;
}

.icon-socials {
    width: 28px;
}

.card-xl {
    max-width: 620px;
}

