.profile-image-container {
    text-align: center;
    padding: 20px;
}

.card {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: none;
    margin-bottom: 30px;
}

.profile-field {
    margin-bottom: 15px;
}

.profile-field-label {
    font-weight: bold;
    color: #666;
    font-size: 0.9em;
    text-transform: uppercase;
}

.profile-field-value {
    color: #333;
    font-size: 1.1em;
}

.quote {
    font-style: italic;
    color: #666;
    border-left: 3px solid #007bff;
    padding-left: 15px;
    margin: 20px 0;
}

.pronouns {
    display: inline-block;
    background-color: #e9ecef;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.9em;
    color: #495057;
}

/* Step Progress Styles */
.steps-progress {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin: 0 auto 2rem;
    max-width: 600px;
}

.steps-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    background: white;
    width: 100px;
    text-align: center;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    border: 2px solid #e9ecef;
}

.step.active .step-number {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.step.completed .step-number {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.step-label {
    font-size: 0.875rem;
    color: #6c757d;
}

.step.active .step-label {
    color: #007bff;
    font-weight: bold;
}

/* Mapping Styles */
.mapping-row {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 4px;
}

.mapping-field {
    flex: 1;
    margin-right: 1rem;
}

.mapping-select {
    flex: 2;
}

.mapping-preview {
    flex: 1;
    color: #6c757d;
    font-size: 0.875rem;
    padding-left: 1rem;
}

/* Code Preview Styles */
.code-container {
    position: relative;
    margin: 1rem 0;
    border-radius: 4px;
    background: #272822;
}

.code-container pre {
    margin: 0;
    padding: 1rem;
    max-height: 500px;
    overflow: auto;
}

.code-container code {
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Custom scrollbar for code containers */
.code-container pre::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.code-container pre::-webkit-scrollbar-track {
    background: #1e1f1c;
}

.code-container pre::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.code-container pre::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Row Selector Styles */
#rowSelector {
    max-width: 100%;
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .row > div {
        margin-bottom: 2rem;
    }
    
    .code-container {
        margin-bottom: 2rem;
    }
} 