/* ------------------------------------------------------------------

styling for cast & voting

--------------------------------------------------------------------- */




/*                                                             */
/* _________________________ SPECIFC _________________________ */
/*                                                             */


    /* tables */
td a {
    font-weight: bolder;
    color: unset;
}




/*                                                            */
/* _________________________ ITEMS  _________________________ */
/*                                                            */

/* sorted chronologically as seen in webpage */


    /* ---- CAST ---- */
        /* recordings */
.reccenter {
    display: flex;
    justify-content: center;
}

.roles-display {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.role {
    flex-grow: 1;
    border-width: 1px;
    border-radius: 1rem;
    border-style: solid;

    padding: 5px;
    margin-right: 5px; margin-left: 5px; margin-top: 5px;
    float: left;

    text-align: center;

    min-width: 9.375rem; max-width: 9.375rem;
}


        /* social */
#socials-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: .6rem;
}

.socials-row{
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

.socials-card { width: 8.625rem; }

.social-component {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 5px;
}

            /* discord */
#discord-container {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 1.25rem;
    font-family: Arial, Helvetica, sans-serif;
}

.vertical-bottom-text-span {
    display: inline-flex;
    align-items: flex-end;
}


            /* images */
.contributor-img {
    max-width: 10vh; max-height: 10vh;
    border-radius: 5px;
}

.wb-a.txt-c img {
    max-width: 100%;
}

.valink-container {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.valink {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

#voice-actor-avatar{
    padding-top: .1rem;
	min-width: 9.375rem;
	max-width: 9.375rem;
	border-radius: .3rem;
    height: 9.375rem;
}


            /* buttons */
.contactbtn { background:rgb(255, 239, 102); }
.contactbtn:hover { border-color: rgb(239, 228, 143); }

.youtubebtn { color: white; background-color: #FF3D00;}

.twitterbtn { color: white; background-color: #1DA1F2;}

.castingcallclubbtn { color: white; background-color:#6827F7; }

.commentbtn { background: rgb(128, 128, 221); }
.commentbtn:hover { border-color: rgb(104, 104, 219); }


    /* ---- VOTING ---- */
.upvote, .downvote, .comment {
    color: #333;
}

.upvote {
    border-color: rgb(57, 117, 57);
    border-style: outset;
    background: rgb(137, 210, 134);
}
.downvote {
    border-color: rgb(129, 52, 52);
    border-style: outset;
    background: rgb(210, 134, 134);
}

.upvote:hover, .downvote:hover {
    /* Cancel the "prompting" hover effect that is defaultly applied to all buttons */
    transform: translateY(-5px);
}
.clicked {
    border-style: inset;
    background: #c0c0c0;
}
.upvote.clicked {
    background: rgb(79, 180, 79);
}
.downvote.clicked {
    background: rgb(171, 81, 81);
}








@media (max-width: 62.5rem) {
    .the-recording {
        display: flex;
        justify-content: center;
        position: relative;
        margin-bottom: .9rem;
    }
    .voting-buttons {
        display: inline;
        margin-left: .75rem;
    }
    .line-count {
        display: block;
        width: 100%;
        text-align: center;
    }
    .mobile-hr {
        display: block;
    }
    .voting-audio-box {
        display: table;
        margin-bottom: 4.375rem;
    }
}