:root {
    --primary: #1a2a6c;
    --accent: #fdbb2d;
    --bg: #f4f7f6;
    --text: #2c3e50;
    --white: #ffffff;
    --danger: #b21f1f;
    --success: #27ae60;
}

body {
    background: linear-gradient(to right, #f4f7f6, #e9ecef);
}

.card {
    border-left: 5px solid var(--primary);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
}

.stats-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.stats-inputs label {
    font-size: 14px;
    font-weight: bold;
}

.player-item {
    border-left: 3px solid var(--accent);
    padding-left: 10px;
}

h1 {
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

#add-player-btn {
    background-color: var(--success);
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 18px;
    padding: 15px;
}

button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    margin-bottom: 10px;
}

button.danger {
    background: var(--danger);
}

input, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.player-list {
    margin-top: 20px;
}

.player-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.player-item:last-child {
    border-bottom: none;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    font-size: 12px;
}

@media (max-width: 480px) {
    body {
        padding: 5px;
    }
}
