/* Modern, minimalist, Apple-inspired design: clean typography, subtle gradients, and smooth animations */
body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", Roboto, Helvetica, Arial, sans-serif !important;
    background: #f5f5f7 !important;
    color: #1d1d1f !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Form Styles */
.vupc-form-container {
    max-width: 600px !important;
    margin: 40px auto !important;
    padding: 32px !important;
    background: linear-gradient(180deg, #ffffff 0%, #f9f9fb 100%) !important;
    border-radius: 24px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.vupc-form-container:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1) !important;
}

.vupc-form-group {
    margin-bottom: 20px !important;
}

.vupc-form-group label {
    display: block !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #1d1d1f !important;
    margin-bottom: 10px !important;
    letter-spacing: -0.02em !important;
}

.vupc-form-group input,
.vupc-form-group textarea {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 1px solid #d2d2d7 !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    color: #1d1d1f !important;
    background: #ffffff !important;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease !important;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.vupc-form-group input:focus,
.vupc-form-group textarea:focus {
    outline: none !important;
    border-color: #0071e3 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2) !important;
}

.vupc-form-group textarea {
    resize: vertical !important;
    min-height: 80px !important;
}

.vupc-form-group input[type="file"] {
    padding: 8px !important;
    background: transparent !important;
}

.vupc-crop-button {
    display: inline-block !important;
    padding: 12px 24px !important;
    background: #0071e3 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 14px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.3s ease, transform 0.2s ease !important;
    letter-spacing: -0.02em !important;
    margin-top: 10px !important;
}

.vupc-crop-button:hover {
    background: #0057b8 !important;
    transform: scale(1.02) !important;
}

#vupc_cropper_container {
    margin-top: 15px !important;
    max-width: 100% !important;
}

#vupc_image_to_crop {
    max-width: 100% !important;
    max-height: 400px !important;
}

.vupc-submit-button {
    display: inline-block !important;
    padding: 14px 28px !important;
    background: #0071e3 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 14px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.3s ease, transform 0.2s ease !important;
    letter-spacing: -0.02em !important;
}

.vupc-submit-button:hover {
    background: #0057b8 !important;
    transform: scale(1.02) !important;
}

.vupc-success {
    color: #34c759 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    margin-bottom: 20px !important;
    text-align: center !important;
}

.vupc-error {
    color: #ff3b30 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    margin-bottom: 20px !important;
    text-align: center !important;
}

/* Card Styles */
.vupc-card-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    margin: 40px 0 !important;
    max-width: 600px !important;
}

.vupc-card {
    width: 100% !important;
    max-width: 450px !important;
    padding: 32px !important;
    background: linear-gradient(180deg, #ffffff 0%, #f9f9fb 100%) !important;
    border-radius: 24px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
    overflow: hidden !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.vupc-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-4px) !important;
}

.vupc-profile-picture {
    width: 130px !important;
    height: 130px !important;
    border-radius: 20px !important;
    margin: 0 0 20px 0 !important;
    display: block !important;
    object-fit: cover !important;
    border: 3px solid #ddd !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
    object-position: center !important;
    aspect-ratio: 1/1 !important;
}

.vupc-name {
    font-size: 26px !important;
    font-weight: 700 !important;
    margin: 0 0 16px !important;
    color: #1d1d1f !important;
    text-align: left !important;
    letter-spacing: -0.03em !important;
}

.vupc-degree,
.vupc-specialization,
.vupc-experience,
.vupc-contact,
.vupc-license {
    font-size: 15px !important;
    margin: 12px 0 !important;
    color: #1d1d1f !important;
    text-align: left !important;
    font-weight: 400 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
}

.vupc-degree i,
.vupc-specialization i,
.vupc-experience i,
.vupc-contact i,
.vupc-license i,
.vupc-bio i,
.vupc-awards i {
    color: #0071e3 !important;
    font-size: 16px !important;
}

.vupc-bold {
    font-weight: 600 !important;
    color: #1d1d1f !important;
}

.vupc-bio {
    font-size: 15px !important;
    line-height: 1.5 !important;
    margin: 16px 0 !important;
    color: #6e6e73 !important;
    text-align: left !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    width: 100% !important;
}

.vupc-bio-text {
    flex: 1 !important;
}

.vupc-awards {
    margin-top: 20px !important;
    border-top: 1px solid #e5e5ea !important;
    padding-top: 16px !important;
}

.vupc-awards h3 {
    font-size: 16px !important;
    font-weight: 600 !important;
    margin: 0 0 10px !important;
    color: #1d1d1f !important;
    text-align: left !important;
    letter-spacing: -0.02em !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
}

.vupc-awards p {
    font-size: 15px !important;
    color: #6e6e73 !important;
    text-align: left !important;
    line-height: 1.5 !important;
}

.vupc-buttons {
    margin-top: 20px !important;
    text-align: left !important;
    display: flex !important;
    gap: 10px !important;
}

.vupc-download-button,
.vupc-share-button {
    padding: 12px 24px !important;
    background: #0071e3 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 14px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.3s ease, transform 0.2s ease !important;
    letter-spacing: -0.02em !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.vupc-download-button:hover,
.vupc-share-button:hover {
    background: #0057b8 !important;
    transform: scale(1.02) !important;
}