    
#cubeForm input, 
#cubeForm button {
    width:  calc(96% - 2px);
    height: calc(96% - 2px);
    border-width    : 1px;
    margin          : 1%;
    padding-inline  : 1%;
    padding-block   : 1%;
}
#cubeForm button{width: 98%;} /*Honestly no idea why this is needed*/

#myCubes                { overflow-x: hidden;         overflow-y: scroll; color:#dfd78e;}
#myCubes button         { color: var(--lightbluCol);  width: 100%;                        }
#myCubes button:hover   { color: white;}




#cubeInternals{ 
    border          : 1px solid gold;
    width           : calc(90% - 2px);
    margin-inline   : 5%;
    background-image: var(--stdLinear);
    border-radius   : var(--stdBorRad);
    color           :  white;
    font-family     : 'Yugioh';
}
.cubeDropDown {
    width           : calc(96% - 2px);
    margin          : 1%;
    padding         : 1%;
    background-color: #2a2a2a;
    border          : 1px solid #222;
    outline         : 1px solid #222;
    border-radius   : var(--stdBorRad);
    color           : wheat;
    text-align      : left;
    display: grid;
    grid-template-rows: auto auto auto;
    grid-template-columns: repeat(2, 50%);
    hr  { 
        border-top      : 2px solid #333;
        border-bottom   : 1px solid #222;
        border-left     : none;
        border-right    : none;
    }
}
.dropdown-item {
    color: wheat
}
.dropdown-button-container {
    display: grid;
    grid-template-columns: 80% 20%;
}
.dropdown-delete-button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0;
    background-image: linear-gradient(var(--redCol), #190107);
    box-shadow: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.dropdown-delete-button:hover {
    border-color: var(--redCol);
}
.dropdown-show-button {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.really-delete-button{
    transition: box-shadow 0.1s;
    background-image: linear-gradient(var(--redCol), #190107);
    text-shadow: 0px 1px 2px #111;
    border-color: var(--redCol);
    color: #dfd78e;
    padding: 1%;
    outline: 1px solid black;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.really-delete-button:hover{
    color: var(--lightredCol); border-color: var(--lightredCol);
    box-shadow: 0px 0px 5px 5px var(--redCol);
    transition: box-shadow 0.1s;
    color: red;
}

.cube-sect-download {
    grid-row    : 1 / span 1;
    grid-column : 1 / span 3;
}
.cube-sect-download button {
    width: 40%; margin-inline: 5%;
    padding-block: 0.5%;
}
.cube-sect-event {
    grid-row    : 2 / span 1;
    grid-column : 1 / span 1;
    img {  width: 5%; }
}
.cube-sect-prefs {
    grid-row    : 2 / span 1;
    grid-column : 2 / span 1;
    .firstWord {
        color: var(--grnCol);
        width: 20%;
        display: block;
        margin-top: 2%;
        text-transform: capitalize;
        font-weight: bold;
    }
}
.cube-sect-cards {
    grid-column: 1 / span 3;
    width: 100%;
    figure {
        display: inline-block;
        width       : calc(5% - 4px);
        border      : 1px outset white;
        margin      : 0; 
        padding     : 0;
        outline     : 1px solid black;
        transition: 0.5s;
        &.trap                          { border-color: var(--colTrapDark);     }
        &.spell                         { border-color: var(--colSpellDark);    }
        &.normal,   &.normal_pendulum   { border-color: var(--colNormalDark);   }
        &.effect,   &.effect_pendulum   { border-color: var(--colEffectDark);   }
        &.ritual,   &.ritual_pendulum   { border-color: var(--colRitualDark);   }
        &.fusion,   &.fusion_pendulum   { border-color: var(--colFusionDark);   }
        &.synchro,  &.synchro_pendulum  { border-color: var(--colSynchroDark);  }
        &.xyz,      &.xyz_pendulum      { border-color: var(--colXYZDark);      }
        &.link,     &.link_pendulum     { border-color: var(--colLinkDark);     }
        img {
            aspect-ratio: 1 / 1;
        }
        figcaption {
            white-space: nowrap;
            overflow: hidden;
            text-overflow:ellipsis;
            max-width: 100%; 
            display: block;  
            font-size: 0.5em;
            color: #aaa;
        }
    }
    figure:hover {
        border-color: white;
        cursor: pointer;
        transition: 0s;
        filter: drop-shadow(0 0 5px white);
        background: black;
        figcaption {
            color: white;
        }
    }
    ul {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    span {
        width: 20%;
        display: inline-block;
    }
}


#discord-login{
    width: 50%; 
    margin-inline: 25%; 
    height: 200px;
    background-image: url("/cubes/img/discord.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #5865f2;
    box-shadow: none;
    transition: filter 0.2s;
}
#discord-login:hover {
    filter: drop-shadow(0 0 3px white) drop-shadow(0 0 3px var(--goldCol));
    transition: filter 0.2s;
}