/* User Actions Container */
.actions-container {
    display: flex;
    position: absolute;
    bottom: 0px;
}
.actions-group {
    display: flex;
    flex-direction: column;
    position: relative;
}
.user-actions-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 5px;
    width: 300px;
    height: 75px;
    padding: 5px;
    background: var(--gray-20);
    border-radius: 5px;
    z-index: 1;
}

.action-button {
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.action-fold {
    background: var(--fold-color);
    color: white;
}

.action-check {
    background: var(--check-color);
    color: white;
}

.action-call {
    background: var(--call-color);
    color: white;
}

.action-raise {
    background: var(--raise-1-color);
    color: white;
}

.action-button:hover {
    opacity: 0.8;
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.5);
}

.action-button:active {
    transform: scale(0.98);
}

.action-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.waiting-message {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-60);
    font-size: 14px;
}

.hand-complete-actions {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-next-hand {
    background: var(--brand-primary);
    color: white;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.action-next-hand:hover {
    background: #5cb85c;
    transform: scale(1.05);
}

/* Remove raise-buttons-container grid styling since we're using 2x2 */
.raise-buttons-container {
    display: contents; /* Makes children participate in parent grid */
}

.action-button.action-raise-1 {
    background-color: var(--raise-1-color);
}

.action-button.action-raise-2 {
    background-color: var(--raise-3-color);
}