.image-upload-field {
    margin-bottom: 20px;
}

.upload-box {
    border: 2px dashed #ccc;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

.upload-box:hover {
    border-color: #0073aa;
    background: #f9f9f9;
}

.upload-placeholder span {
    font-size: 16px;
    display: block;
}

.upload-placeholder small {
    color: #777;
}

.file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.preview-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.upload-actions {
    margin-top: 10px;
}

.upload-actions button {
    margin: 5px;
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.change-btn {
    background: #2196f3;
    color: #fff;
}

.remove-image-btn {
    background: #f44336;
    color: #fff;
}

.required {
    color: #000000 !important;
    margin-left: 5px;
}

.level2_button {
    background: #2E3282 !important;
    color: white !important;
    border: none;
    padding: 10px 20px;
    border-radius: 50px !important;
    cursor: pointer;
}

.ul2-customer-container {
    
    margin: 20px 0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.ul2-field {
    margin-bottom: 25px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #f9f9f9;
}

.ul2-field.required {
    border-left: 4px solid #ff9800;
}

.ul2-field.completed {
    border-left: 4px solid #4caf50;
    background: #f0f8f0;
}

.ul2-field label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 16px;
}

.required-star {
    color: #ff0000;
    margin-left: 5px;
}

.ul2-field input[type="text"],
.ul2-field input[type="date"],
.ul2-field select,
.ul2-field input[type="file"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.ul2-nrc-group {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}

.existing-data {
    padding: 10px;
    background: #e8f5e9;
    border-radius: 4px;
    margin-bottom: 10px;
}

.existing-value {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.preview-thumb {
    max-width: 200px;
    max-height: 150px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.remove-image-btn {
    background: #ff9800;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px 0;
}

.remove-image-btn:hover {
    background: #f57c00;
}

.ul2-complete-status {
    background: #4caf50;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.ul2-view-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.ul2-view-row {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.ul2-view-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.ul2-view-image img {
    max-width: 100%;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.ul2-contact-note {
    margin-top: 20px;
    padding: 10px;
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    font-style: italic;
}

@media (max-width: 768px) {
    .ul2-nrc-group {
        grid-template-columns: 1fr;
    }
    
    .ul2-view-images {
        grid-template-columns: 1fr;
    }
}


/* Status message styles */
.ul2-complete-status {
    background: #4caf50;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.ul2-pending-status {
    background: #ff9800;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.ul2-rejected-status {
    background: #f44336;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.ul2-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.ul2-message {
    font-size: 16px;
    font-weight: 500;
}