/* Estilos para os botões de escolha que aparecem ao arrastar os cards */

#choice-left, #choice-right {
    position: fixed;
    left: 45%;
    top: 45%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background: transparent;
    border: 2px solid #3d2b2b;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 1.1em;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    overflow: hidden;
    max-width: 200px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    word-wrap: break-word;
    hyphens: auto;
}

#choice-left {
    z-index: 1001;
    margin-left: -110px;
}

#choice-right {
    z-index: 1000;
    margin-left: 110px;
}

#choice-left::before, #choice-right::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 80%);
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: rotate(30deg);
    pointer-events: none;
}

#choice-left:hover, #choice-right:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 15px rgba(61, 43, 43, 0.4);
}

#choice-left:hover::before, #choice-right:hover::before {
    opacity: 1;
}

#choice-left:active, #choice-right:active {
    transform: translate(-50%, -50%) scale(0.98);
}