/* Modern Frontend Styles */
.angie-msf-container-6c40492e {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 40px;
    max-width: 800px;
    margin: 40px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.msf-progress-bar-6c40492e {
    background: #e9ecef;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}
.msf-progress-fill-6c40492e {
    background: #007bff;
    height: 100%;
    transition: width 0.4s ease;
}
.msf-step-indicators-6c40492e {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.msf-indicator-6c40492e {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e9ecef;
    color: #495057;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s;
}
.msf-indicator-6c40492e.active {
    background: #007bff;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(0,123,255,0.2);
}
.msf-steps-wrapper-6c40492e {
    position: relative;
    overflow: hidden;
}
.msf-step-6c40492e {
    display: none;
    animation: msfFadeIn 0.5s ease;
}
.msf-step-6c40492e.active {
    display: block;
}
@keyframes msfFadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
.msf-field-group-6c40492e {
    margin-bottom: 20px;
}
.msf-field-group-6c40492e label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}
.msf-field-group-6c40492e input,
.msf-field-group-6c40492e textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s;
}
.msf-field-group-6c40492e input:focus,
.msf-field-group-6c40492e textarea:focus {
    border-color: #007bff;
    outline: none;
}
.msf-actions-6c40492e {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.msf-actions-6c40492e button {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.msf-btn-prev-6c40492e {
    background: #f8f9fa;
    color: #333;
}
.msf-btn-prev-6c40492e:hover {
    background: #e2e6ea;
}
.msf-btn-next-6c40492e, .msf-btn-submit-6c40492e {
    background: #007bff;
    color: #fff;
    margin-left: auto;
}
.msf-btn-next-6c40492e:hover, .msf-btn-submit-6c40492e:hover {
    background: #0056b3;
}
.msf-success-message-6c40492e {
    text-align: center;
    padding: 40px 0;
}
