/* Basic styling for the button container */
.ytcontrols {
    display: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px;
    background-color: #222;
}

.leader .ytcontrols,
.admin .ytcontrols {
    display: flex;
}

/* Style for individual buttons */
.ytbutton {
    width: 60px;
    height: 60px;
    background: linear-gradient(to bottom, #555 0%, #333 100%);
    border: none;
    border-radius: 6px;
    box-shadow: 0 4px #111, inset 0 1px #555;
    color: white;
    font-size: 24px;
    cursor: pointer;
    /* transition: all 0.2s ease-in-out; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Button icons */
.ytbutton i {
    pointer-events: none;
    font-size: 32px;
    color: black;
}

.ytbutton .icon-stack {
    display: inline-block;
}

.ytbutton .icon-stack i.fa {
    position: absolute;
    top: 0;
    left: 0;
}

.ytbutton .icon-stack .fa-num {
    font-size: 0.8em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%);
    color: #aaa;
    -webkit-text-stroke: 1px #333;
    font-weight: bolder;
}

/* Hover effect for buttons */
.ytbutton:hover {
    background: linear-gradient(to bottom, #777, #444);
}

/* Active (clicked) button style */
.ytbutton:active {
    box-shadow: 0 2px #111, inset 0 2px #333;
    transform: translateY(2px);
}

