/* Scope everything to Player tab */
#player label {
    color: #374151;
    font-weight: bold;
    margin-bottom: 4px;
}

#player input,
#player select {
    padding: 6px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* Field sizing */
#player #ghin {
    max-width: 75px;
}

#player #name {
    max-width: 150px;
}

#player #hdcp {
    max-width: 35px;
    width: 35px;
}

#player #date {
    max-width: 150px;
    width: 150px;
}

#player #tee {
    max-width: 200px;
    width: 200px;
}

/* Submit button */
#player #submitBtn {
    display: block;
    margin: 12px auto;
    padding: 10px 20px;

    font-size: 16px;
    font-weight: 600;

    min-width: 160px;

    border-radius: 8px;
    border: none;

    background-color: #2563eb;
    color: white;

    cursor: pointer;
    transition: all 0.2s ease;
}

#player #submitBtn:hover {
    background-color: #1d4ed8;
}

#player #submitBtn:active {
    background-color: #1e40af;
}
