#custom-label-container {
    background: transparent;
    padding: 0;
    border: none;
    margin-top: 20px;
    margin-bottom: 20px;
}

#custom-label-container label {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    color: #333; /* Dark font for clarity */
}

.char-counter {
    font-size: 0.85em;
    color: #999;
    font-weight: normal;
}

.char-counter.counter-error {
    color: #e74c3c;
    font-weight: bold;
}

.custom-personalization-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px; /* Slight roundness often fits modern themes */
    box-shadow: none;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.custom-personalization-input:focus {
    border-color: #0f4c81; /* Blue from the theme screenshot reference */
    outline: none;
}

.input-text.input-error {
    border-color: #e74c3c !important;
    background-color: #fff !important; /* Keep white background even on error, just red border */
}

.custom-label-warning {
    display: block;
    margin-top: 10px;
    color: #777;
    font-style: italic;
    font-size: 0.85em;
}

.required {
    color: #e74c3c;
}