/* Espaçamento das Labels */
.sp-field {
    margin-bottom: 20px; /* Espaço maior entre os campos de entrada */
    text-align: left;
}
.sp-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #555;
}

/* Inputs ocupando 100% */
.sp-field input, .sp-field select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* Cartas ocupando o espaço total (Grid) */
.sp-deck {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr)); /* Faz as cartas esticarem */
    gap: 10px;
    width: 100%;
    margin: 20px 0;
}

.sp-vote-btn {
    width: 100%; /* Ocupa o espaço da célula do grid */
    height: 90px;
    margin: 0;
}

.sp-container {
    --primary: #6c5ce7;
    --bg-card: #ffffff;
    --text: #2d3436;
    max-width: 500px;
    margin: 0 auto;
}

.sp-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 24px; /* Bordas bem arredondadas */
    box-shadow: 0 20px 50px rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.sp-button {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

.sp-vote-btn {
    width: 70px;
    height: 100px;
    margin: 8px;
    border: 2px solid #f1f2f6;
    background: #fff;
    border-radius: 12px;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary);
    transition: 0.2s cubic-bezier(.4,0,.2,1);
}

.sp-vote-btn:hover {
    border-color: var(--primary);
    background: #f9f8ff;
}

.sp-vote-btn.selected {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

#players-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.sp-card {
    display: flex;
    flex-direction: column;
}

.sp-actions {
    display: flex;
    flex-direction: column; 
    gap: 10px; 
}

#players-list li {
    list-style: none;
    padding: 10px 15px;
    margin-bottom: 5px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.05);
}