.msf-container-5e4e21ff {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.msf-progress {
    height: 6px;
    background: #eee;
    border-radius: 3px;
    margin-bottom: 30px;
    overflow: hidden;
}
.msf-progress-bar-fill {
    height: 100%;
    background: #000;
    width: 0%;
    transition: width 0.3s ease;
}
.msf-step {
    display: none;
}
.msf-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}
.msf-step h3 {
    text-align: center;
    margin-bottom: 25px;
}
.msf-validation-error {
    color: #d9534f;
    text-align: center;
    font-size: 14px;
    margin-bottom: 15px;
    display: none;
    background: #fdf7f7;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #f2dede;
}
.msf-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}
.msf-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    height: 100%;
}
.msf-option:hover {
    border-color: #ccc;
}
.msf-option input {
    display: none;
}
.msf-option.selected {
    border-color: #000;
    background-color: #f9f9f9;
}
.msf-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.msf-icon svg {
    width: 32px;
    height: 32px;
    fill: #000;
    transition: all 0.3s;
}

/* Icon Styles */
.msf-icon-style-stacked .msf-icon {
    background-color: #eee;
    padding: 15px;
}
.msf-icon-style-framed .msf-icon {
    border: 2px solid #eee;
    padding: 15px;
}
.msf-icon-shape-circle .msf-icon {
    border-radius: 50%;
}
.msf-icon-shape-rounded .msf-icon {
    border-radius: 10px;
}
.msf-icon-shape-square .msf-icon {
    border-radius: 0;
}

.msf-option.selected .msf-icon-style-framed .msf-icon {
    border-color: currentColor;
}

.msf-option-label {
    font-weight: 500;
}
.msf-inputs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px auto;
    max-width: 400px;
}
.msf-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}
.msf-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.msf-step-button {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.2s;
}
.msf-step-button:hover {
    opacity: 0.9;
}
.msf-btn-prev {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
.msf-btn-prev:hover {
    background: #f5f5f5;
}
.msf-message {
    text-align: center;
    margin-top: 15px;
    font-weight: 500;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
