body {
    background-color: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.main-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.form-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.preview-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: sticky;
    top: 20px;
}

.step-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 14px;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.photo-upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.photo-upload-area:hover {
    border-color: #007bff;
    background-color: #e3f2fd;
}

.photo-upload-area.dragover {
    border-color: #007bff;
    background-color: #e3f2fd;
}

.upload-icon {
    width: 60px;
    height: 60px;
    background-color: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #6c757d;
    font-size: 24px;
}

.uploaded-image {
    max-width: 200px;
    max-height: 200px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.preview-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.preview-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.preview-section {
    text-align: center;
    margin-bottom: 25px;
}

.preview-label {
    font-weight: 600;
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.preview-content {
    color: #333;
    font-size: 14px;
    min-height: 20px;
}

.btn-cancel {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 500;
}

.btn-continue {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 500;
}

.btn-cancel:hover {
    background-color: #c82333;
    border-color: #bd2130;
    color: white;
}

.btn-continue:hover {
    background-color: #0056b3;
    border-color: #004085;
    color: white;
}

.file-input {
    display: none;
}

.file-info {
    margin-top: 10px;
    padding: 10px;
    background-color: #e9ecef;
    border-radius: 4px;
    font-size: 12px;
    color: #666;
}

.remove-image {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(220, 53, 69, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    display: none;
}

.image-container {
    position: relative;
    display: inline-block;
}

.image-container:hover .remove-image {
    display: block;
}

.paragraph-text-justify {
    text-align: justify;
}