#diceContainer {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.die {
    position: absolute;
    width: 70px;
    height: 70px;
    transition: transform 0.2s;
}

.die img {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Shadow */
.die::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 10%;
    width: 80%;
    height: 10px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    filter: blur(4px);
}

.dark-blue {
    background-color: #2e3470;
}
.blue {
    background-color: #5b6ae1;
}
.table td {
    border-bottom: 0px;
}
.form-control[readonly] {
    background-color: #2e3470; 
    color: rgba(var(--bs-light-rgb));
    border: 2px;
    border-color: #2e3470;
    cursor: default;
}

.form-control[readonly]:focus {
    background-color: #2e3470 !important;
    color: rgba(var(--bs-light-rgb)); 
    border: 2px;
    border-color: #2e3470;
    box-shadow: none !important;
}
.diceTray {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Mobile: horizontal stack */
@media (max-width: 768px) {
    .diceTray {
        flex-direction: row;
        flex-wrap: wrap; 
    }
}