/* Default styling for all providers */
.provider-button {
    display: inline-block;
    align-items: center;
    padding: 0;
    margin: 5px;
    border-radius: 5px;
    color: white;
    text-align: center;
    font-weight: 20;
    text-decoration: none;
}

/* Google specific styles */
.provider-button.google {
    /* background-color: #4285F4; */
    color: black;
    font-size: 16px
}

.provider-button.google img {
    height: 30px;
    margin-right: 5px;
}

/* Facebook specific styles */
.provider-button.facebook {
    background-color: #3b5998;
}

.provider-button.facebook img {
    height: 20px;
    margin-right: 10px;
}

/* LinkedIn specific styles */
.provider-button.linkedin {
    background-color: #0077B5;
}

.provider-button.linkedin img {
    height: 20px;
    margin-right: 10px;
}

.no-caret::after {
    display: none !important;  /* Hides the caret */
}



/* Slide in from right animation */
@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Slide out to right animation */
@keyframes slideOutRight {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Apply slide-in animation on show */
.toast.showing {
    animation: slideInRight 0.5s forwards; /* Duration: 0.5 seconds */
}

/* Apply slide-out animation on hide */
.toast.hide {
    animation: slideOutRight 0.5s forwards; /* Duration: 0.5 seconds */
}

.fs-6 {
    font-size: 6px;
}

.fs-7 {
    font-size: 7px;
}

.fs-8 {
    font-size: 8px;
}

.fs-9 {
    font-size: 9px;
}

.fs-10 {
    font-size: 10px;
}

.fs-11 {
    font-size: 11px;
}

.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.fs-16 {
    font-size: 16px;
}

.fs-17 {
    font-size: 17px;
}

.fs-18 {
    font-size: 18px;
}

.fs-19 {
    font-size: 19px;
}

.fs-20 {
    font-size: 20px;
}

.fs-21 {
    font-size: 21px;
}

.fs-22 {
    font-size: 22px;
}

.fs-23 {
    font-size: 23px;
}

.fs-24 {
    font-size: 24px;
}

