.profile-photo-field {
    max-width: 520px;
    margin: 18px 0 22px;
}

.profile-photo-field > label {
    display: block;
    padding: 18px;
    border: 1px solid #dbe3ed;
    border-radius: 14px;
    background: #f8fafc;
}

.profile-photo-field span {
    display: block;
    margin-bottom: 10px;
    font-weight: 800;
}

.camera-file-native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.photo-source-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.photo-source-buttons button {
    min-height: 48px;
    padding: 10px 12px;
}

.photo-source-buttons .camera-button {
    background: #0757b5;
    color: #fff;
}

.photo-source-buttons .gallery-button {
    background: #e8eef6;
    color: #10203a;
}

.selected-file-name {
    display: block;
    min-height: auto !important;
    margin-top: 8px;
    overflow-wrap: anywhere;
    color: #64748b;
    font-weight: 600 !important;
}

.selected-file-name.upload-complete {
    color: #15803d;
}

.selected-file-name.upload-failed {
    color: #b91c1c;
}

.upload-preview {
    width: 100%;
    max-height: 190px;
    margin-top: 10px;
    border-radius: 10px;
    object-fit: cover;
}

@media (max-width: 560px) {
    .photo-source-buttons {
        grid-template-columns: 1fr;
    }
}
