﻿/* setup.css */
#player-panel {
    max-width: 700px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

th, td {
    border: 1px solid #ccc;
    padding: 5px;
    text-align: center;
}

input, select, button {
    margin: 5px;
    padding: 5px;
}

button {
    cursor: pointer;
}

.editable {
    background: #fff8e1;
}
