/* Queue layout styling */
.queue-container {
    margin: auto;
    display: flex;
    width: 100%;
    justify-content: space-around;
    max-width: 100%;
    gap: 20px;
}

/* Column styling with neumorphic effect */
.column {
    width: 30%;
    background-color: #f5f5f5;
    /* Light background */
    padding: 20px;
    border-radius: 15px;
    box-shadow: inset 5px 5px 15px #d4d4d4, inset -5px -5px 15px #ffffff;
    /* Soft shadows */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.column h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
    /* Dark text for readability */
}

/* Card styling for each name */
.card {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    background-color: #ffffff;
    /* Bright background for contrast */
    border-radius: 10px;
    box-shadow: 3px 3px 5px #d4d4d4, -3px -3px 5px #ffffff;
    /* Light neumorphic shadows */
    text-align: center;
    color: #333;
    /* Dark text */
}

/* Timer display */
.timer {
    margin-top: 20px;
    font-size: 1.5em;
    color: #3f51b5;
    /* Soft blue for emphasis */
}

/* Button styling */
.controls {
    margin: auto;
    width: 500px;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

/* Dropdown and initializer button */
.dropdown-container {
    display: grid;
    gap: 10px;
}

select {
    background-color: #ffffff;
    /* Light dropdown background */
    color: #333;
    /* Dark text */
    padding: 8px;
    border: 1px solid #ccc;
    /* Subtle border */
    border-radius: 5px;
    font-size: 1em;
}

/* Disabled hover effect */
.disabled-hover:hover {
    background-color: #e0e0e0 !important;
    /* Same as the non-hover color */
    transform: none;
    /* No scaling */
    box-shadow: 3px 3px 10px #d4d4d4, -3px -3px 10px #ffffff;
    /* Same shadow */
}

/* Modal styling */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(255, 255, 255, 0.9);
    /* White with slight opacity */
}

#streamWrapper
{
    width: 650px;
    height: 370px;
    position: relative;
    background-color: #2a2828;
}

#mortStream
{
    height: 100%;
    width: 100%;
    display: none;
    pointer-events: none;
}

.modal-content {
    background-color: #ffffff;
    /* Light modal background */
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #ccc;
    width: 30%;
    text-align: center;
    border-radius: 10px;
    /* Rounded edges */
    box-shadow: 5px 5px 15px #d4d4d4, -5px -5px 15px #ffffff;
    /* Neumorphic shadow */
}

.centeredHeaders {
    display: flex;
    justify-content: center;
    align-items: center;
}

#ManagementMenu {
    position: fixed;
    height: 100%;
    background-color: green;
    top: 0;
    left: 0px;
    width: 600px;
    cursor: pointer;
    transition: all .5s;
    transform: translateX(-510px);
    z-index: 3;
}

#ManagementContent {
    position: absolute;
    height: 100%;
    background-color: rgb(64 62 62);
    top: 0;
    left: 0;
    width: 80%;
    margin-top: 66px;
}

#ManagementHandle {
    position: absolute;
    height: 100%;
    background-color: rgb(34 57 39);
    top: 0;
    left: 80%;
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

#directionCircle {
    align-items: center;
    width: 50px;
    height: 50px;
    background: #28a745;
    position: absolute;
    right: -35px;
    border-radius: 50%;
    top: calc(50% - 19px);
    justify-content: center;
    display: flex;
    border: black solid 5px;
    pointer-events: none;

}

#handleTitle {
    transform: rotate(270deg);
    pointer-events: none;
}

.directionalityFlip {
    display: flex;
    align-items:center;
    justify-content: center;
    font-size: 36px;
    position: absolute;
    transition: all .5s;
    pointer-events: none;
    transform: rotate(180deg) translateX(-8px);
    width:100%;
    height:100%;
}

#completedWrapper
{
    width: 100%;
    margin-top: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#completedTitle
{
    display: flex;
        justify-content: center;
        align-items: center;
        pointer-events: none;
        user-select: none;
}

#header2
{
    display: flex;
    align-items: center;
    margin: 0px;
}

#expandableCompleted
{
    cursor: pointer;
}

#doneList
{
    display: none;
}