/* Frontend Styles */
.jersey-customization-fields {
    margin: 20px 0;
}

.customization-container {
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.jersey-custom-field {
    margin-bottom: 20px;
}

.jersey-custom-field:last-child {
    margin-bottom: 0;
}

.jersey-custom-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: #333;
}

.input-wrapper {
    position: relative;
}

.jersey-custom-field input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: #fff;
}

.jersey-custom-field input:focus {
    border-color: #2271b1;
    outline: none;
    box-shadow: 0 0 0 1px rgba(34,113,177,0.1);
}

.jersey-number-input {
    width: 100px !important;
    text-align: center;
}

.name-hint,
.number-hint {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    color: #666;
    font-size: 12px;
}

.hint-icon {
    font-size: 14px;
    color: #666;
}

/* Validation styles */
.jersey-custom-field input:invalid {
    border-color: #dc3232;
}

.jersey-custom-field input:invalid ~ small {
    color: #dc3232;
}

/* Price display */
.customization-price-note {
    display: inline-block;
    margin-top: 6px;
    padding: 3px 8px;
    background: #e8f3ff;
    border-radius: 3px;
    color: #2271b1;
    font-size: 13px;
} 