.social-buttons-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;

    margin-bottom: 4px;

    width: 100%;
}

.social-button-small {
    height: 2.4rem;
    width: 2.4rem;
    padding: 0px;
    /* width: fit-content; */
    /* padding: 8px 12px; */

    justify-content: center;
    align-items: center;

    border-radius: 8px;

    flex-grow: 0;
    flex-shrink: 0;
}

.social-button-small svg {
    height: 1.25rem;
    width: 1.25rem;
    fill: var(--text-color);

    /* Prevent flex from changing the size of the icons */
    flex-grow: 0;
    flex-shrink: 0;
}

.social-button-small span {
    font-size: 1.125rem;

    /* Prevent flex from changing the size of the icons */
    flex-grow: 0;
    flex-shrink: 0;
}