.social-button-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-button {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 24px 24px;
    overflow: hidden;
}

.social-button svg {
    height: 1.5rem;
    width: 1.5rem;
    fill: white;

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

.social-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}
.social-header * { margin-top: 0rem; margin-bottom: 0rem; }

.social-handle {
    font-weight: normal;
    font-style: italic;
    opacity: 0.6;

    /* Makes text truncate with ellipsis on overflow */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.social-description {
    width: 100%;
    margin-top: 0.25rem;
    margin-bottom: 0rem;

    /* Make texts truncate with ellipsis on overflow */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* RESPONSIVE LAYOUT STUFF */

/* If the screen is too narrow, hide descriptions and handles */
@media only screen and (max-width: 32rem) {
    .social-handle { display: none; }
    .social-description { display: none; }
}


/* Platform Specific Theming */
.bluesky {
    color: white;
    background-color: rgba(17, 133, 254, 0.8);
}
.bluesky:link{ color:white; }
.bluesky:visited{ color:white; }
.bluesky svg { height: 1.45rem; }

.tumblr {
    color: white;
    background-color: rgba(54, 70, 93, 0.8);
}
.tumblr:link{ color:white; }
.tumblr:visited{ color:white; }
.tumblr svg { height: 1.45rem; }

.itaku {
    color: rgba(0, 0, 0, 0.87);
    background-color: rgba(255, 235, 59, 0.8);
}
.itaku:link{ color:rgba(0, 0, 0, 0.87); }
.itaku:visited{ color:rgba(0, 0, 0, 0.87); }
.itaku svg { fill: rgba(0, 0, 0, 0.87); }


.cara {
    color: white;
    background-color: rgba(0, 0, 0, 0.8);
}
.cara:link{ color:white; }
.cara:visited{ color:white; }

.mastodon {
    color: white;
    background-color: rgba(86, 58, 204, 0.8);
}
.mastodon:link{ color:white; }
.mastodon:visited{ color:white; }

.twitter {
    color: white;
    background-color: rgba(29, 155, 240, 0.8);
}
.twitter:link{ color:white; }
.twitter:visited{ color:white; }