/* Photo Upload Styling */
.photo-upload-container {
    width: 100%;
    max-width: 250px;
    margin: 0 auto 20px auto;
}

.photo-upload-box {
    width: 150px;
    height: 200px;
    border: 2px dashed #1a73e8;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f8fafc;
    cursor: pointer;
    margin: 0 auto;
}

.photo-upload-box:hover {
    border-color: #1557b0;
    background-color: #f1f5f9;
}

.photo-upload-box input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

#upload-placeholder {
    text-align: center;
    color: #64748b;
    padding: 10px;
}

#upload-placeholder span {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

#upload-placeholder small {
    font-size: 0.75rem;
}

#photo-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

/* Personal Details Section Specific Styles */
#section-a .form-group {
    margin-bottom: 20px;
}

#section-a textarea {
    resize: vertical;
    min-height: 80px;
}