/* ABILITY Wizard Styles - Main Color: #1764ff */
.ability-wizard-wrap { max-width: 900px; margin: 20px auto; background: #fff; border-radius: 12px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); overflow: hidden; }
.ability-wizard-header { background: linear-gradient(135deg, #1764ff 0%, #4a8eff 100%); color: white; padding: 40px 30px; text-align: center; position: relative; }
.ability-logo-container { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 15px; }
.ability-logo-icon { width: 60px; height: 60px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; }
.ability-logo-icon::before { content: ''; width: 40px; height: 40px; background: #1764ff; border-radius: 50%; position: relative; }
.ability-logo-icon::after { content: ''; position: absolute; width: 30px; height: 30px; background: white; border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.ability-wizard-header h1 { margin: 0; font-size: 32px; font-weight: 700; color: rgba(255, 255, 255, 0.95); text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
.ability-wizard-header p { margin: 10px 0 0 0; opacity: 0.95; font-size: 18px; color: rgba(255, 255, 255, 0.9); }
.ability-wizard-progress { background: #f8f9fa; padding: 25px 30px; border-bottom: 1px solid #e9ecef; }
.ability-wizard-wrap .progress-bar { width: 100%; height: 8px; background: #e9ecef; border-radius: 4px; overflow: hidden; margin-bottom: 20px; }
.ability-wizard-wrap .progress-fill { height: 100%; background: linear-gradient(90deg, #1764ff 0%, #4a8eff 100%); width: 25%; transition: width 0.4s ease; border-radius: 4px; }
.ability-wizard-wrap .progress-steps { display: flex; justify-content: space-between; align-items: center; }
.ability-wizard-wrap .progress-steps .step { flex: 1; text-align: center; font-size: 14px; font-weight: 600; color: #6c757d; position: relative; padding: 10px 0; transition: color 0.3s ease; }
.ability-wizard-wrap .progress-steps .step.active { color: #1764ff; font-weight: 700; }
.ability-wizard-content { padding: 50px; background: #fff; }
.ability-wizard-wrap .wizard-step { display: none; animation: fadeIn 0.4s ease-in-out; }
.ability-wizard-wrap .wizard-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
.ability-wizard-wrap .wizard-step h2 { margin: 0 0 15px 0; color: #1a1a1a; font-size: 26px; font-weight: 700; }
.ability-wizard-wrap .wizard-step p { margin: 0 0 30px 0; color: #666; font-size: 16px; line-height: 1.6; }
.form-group input[type="text"], .form-group input[type="url"], .form-group textarea, .form-group select { width: 100%; padding: 12px 15px; border: 2px solid #e0e0e0; border-radius: 6px; font-size: 15px; transition: all 0.3s ease; background: #fff; }
.form-group input[type="text"]:focus, .form-group input[type="url"]:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: #1764ff; box-shadow: 0 0 0 3px rgba(23, 100, 255, 0.1); }
.form-group fieldset { border: 2px solid #e0e0e0; border-radius: 8px; padding: 20px; margin: 0; background: #fafafa; }
.form-group legend { font-weight: 700; color: #1a1a1a; padding: 0 12px; font-size: 16px; }
.form-group fieldset label { display: flex; align-items: flex-start; margin-bottom: 15px; font-weight: 500; cursor: pointer; padding: 10px; border-radius: 6px; transition: background 0.2s ease; }
.form-group fieldset label:hover { background: #f0f4ff; }
.form-group fieldset input[type="checkbox"] { margin-right: 12px; margin-top: 2px; width: 18px; height: 18px; cursor: pointer; }
.form-group .description { font-size: 13px; color: #666; margin-top: 6px; font-style: normal; display: block; margin-left: 30px; }
.ability-pro-badge { display: inline-block; padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; margin-left: 8px; vertical-align: middle; background: #ffd700; color: #1a1a1a; }
.ability-upgrade-notice { background: #f0f4ff; border: 2px solid #1764ff; border-radius: 8px; padding: 20px; margin-top: 20px; }
.wizard-navigation { margin-top: 50px; padding-top: 30px; border-top: 2px solid #e9ecef; display: flex; justify-content: space-between; align-items: center; gap: 15px; }
.wizard-navigation .button-primary { background: #1764ff; border-color: #1764ff; color: #fff; }
.wizard-navigation .button-primary:hover { background: #1352d9; border-color: #1352d9; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(23, 100, 255, 0.3); }
