/* Original styles modified for the new template */
.choices-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allows buttons to wrap on smaller screens */
}

.choice-btn {
    width: 150px;
    height: 150px;
    background-color: var(--bg-main); /* Match template background */
    border: 2px solid var(--accent-color); /* Use accent color for border */
    border-radius: 20px;
    cursor: pointer;
    padding: 10px;
    transition: background-color 0.3s, transform 0.2s;
}

.choice-btn:hover {
    background-color: rgba(0, 201, 255, 0.1); /* Highlight on hover */
    transform: translateY(-5px);
}

.choice-btn img {
    height: 100%;
    width: 100%;
    object-fit: contain; /* Ensures images fit without distortion */
}

/* Styling for the results text */
.results-container {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
    min-height: 120px; /* Reserve space to prevent layout shift */
}

.results-container h3 {
    margin: 8px 0;
}

/* Use the template's accent color for key results */
#decision-text, #scores-text {
    color: var(--text-color);
    font-weight: bold;
}

/* Styling for the reset button */
#reset-btn {
    font-family: 'Orbitron', sans-serif;
    background-color: var(--accent-color);
    color: var(--bg-main);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.2s;
    text-transform: uppercase;
}

#reset-btn:hover {
    opacity: 0.9;
    box-shadow: 0 0 10px var(--accent-color);
}

@media (max-width: 600px) {
    .choice-btn {
        width: 100px;
        height: 100px;
    }
}