* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.pots-container {
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: flex-end;
    position: absolute;
    top: calc(50% + 50px);
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10; /* Above the table logo */
}

.pot-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Chip stack visual */
.pot-wrapper::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(145deg, #0369a1 0%, #075985 50%, #0c4a6e 100%);
    border: 2px solid #0c4a6e;
    box-shadow:
        0 2px 0 0 rgba(7, 89, 133, 0.8),
        0 4px 0 0 rgba(7, 89, 133, 0.6),
        0 6px 0 0 rgba(7, 89, 133, 0.4),
        0 8px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Chip detail lines */
.pot-wrapper::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px dashed rgba(12, 74, 110, 0.5);
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.pot-amount {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: #fff;
    background: rgba(0, 0, 0, 0.9);
    padding: 2px 6px;
    border-radius: 3px;
    margin-top: 10px;
    min-width: 24px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Return pot styling (different color) */
.return-pot::before {
    background: linear-gradient(145deg, #999 0%, #666 50%, #444 100%);
    border-color: #333;
    box-shadow:
        0 2px 0 0 rgba(102, 102, 102, 0.8),
        0 4px 0 0 rgba(102, 102, 102, 0.6),
        0 6px 0 0 rgba(102, 102, 102, 0.4),
        0 8px 8px rgba(0, 0, 0, 0.3);
}

.return-pot::after {
    border-color: rgba(51, 51, 51, 0.5);
}

.pot-odds {
    font-family: 'Roboto Mono', sans-serif;
    font-weight: 200;
    font-size: 10px;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    text-wrap: nowrap;
    text-align: center;
}

/* Hide utility */
.hide {
    display: none !important;
}

.show-flex {
    display: flex !important;
}