/* public/css/style.css - FULL CONSOLIDATED VERSION */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&family=Raleway:wght@200;300;400;500&display=swap');

:root {
    --bg-color: #0c0c0e;
    --bg-color-rgb: 12, 12, 14;
    --container-bg: rgba(20, 20, 22, 0.75);
    --secondary-dark: #1c1c1e;
    --secondary-dark-rgb: 28, 28, 30;
    --tertiary-dark: #2c2c2e;
    --tertiary-dark-rgb: 44, 44, 46;

    --text-primary: #e0e0e0;
    --text-primary-rgb: 224, 224, 224;
    --text-headline: #f5f5f5;

    /* ACCENT (GOLD/BRONZE TONES) */
    --accent-primary: #d0c0a0;
    --accent-primary-rgb: 208, 192, 160;
    --accent-primary-hover: #bca98c;
    --text-secondary: #a09070;
    --text-tertiary: #7a6e56;

    --input-bg: rgba(30, 30, 32, 0.85);
    --input-bg-rgb: 30, 30, 32;
    --input-border: #4a4a4a;
    --input-focus-border: var(--accent-primary);

    --button-text-on-accent: var(--bg-color);
    --button-text-outlined: var(--accent-primary);

    --font-body: 'Poppins', sans-serif;
    --font-headline: 'Raleway', sans-serif;

    --border-radius: 8px;
    --border-radius_small: 5px;

    --error-color: #ff8a8a;
    --error-bg: rgba(255, 100, 100, 0.05);
    --error-border: rgba(255, 100, 100, 0.2);
    --success-color: var(--accent-primary);
    --success-bg: rgba(var(--accent-primary-rgb),0.1);
    --success-border: var(--accent-primary);
    --info-color: #8cb3d9;
    --info-bg: rgba(100, 150, 200, 0.1);
    --info-border: rgba(100, 150, 200, 0.3);
    --warning-color: #f1c40f;
    --warning-bg: rgba(241, 196, 15, 0.1);
    --warning-border: rgba(241, 196, 15, 0.3);

    --gap-color-zero: #2ecc71;
    --gap-color-low: #f1c40f;
    --gap-color-high: #e74c3c;
    --gap-color-negative: #95a5a6;

    /* Chart Colors */
    --chart-completed-bg: var(--gap-color-zero); /* Green for completed */
    --chart-pending-bg: var(--tertiary-dark); /* Dark grey for pending */
    --chart-border-color: var(--secondary-dark);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-color); color: var(--text-primary); font-family: var(--font-body);
    font-weight: 300; font-size: 15px; line-height: 1.7;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    padding-top: 50px; padding-bottom: 45px; display: block; position: relative; min-height: 100vh;
}
.auth-page-wrapper {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-height: calc(100vh - 50px - 45px); padding-top: 0; padding-bottom: 0;
}
body:not(.auth-page-wrapper) { padding-left: 20px; padding-right: 20px; }

.container { /* General container for auth pages, smaller dialogs */
    background-color: var(--container-bg); backdrop-filter: blur(5px); padding: 30px 40px;
    border-radius: var(--border-radius); box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    width: 100%; max-width: 480px; text-align: center; margin: 20px auto; position: relative; z-index: 5;
}
.module-content-container { /* For main page content areas */
    width: 100%;
    max-width: 1000px; /* <<< UPDATED: Standardized to a wider width */
    margin: 100px auto 20px auto; /* margin-top adjusted */
    padding: 20px; /* Default padding, can be overridden by specific page container */
    position: relative;
    z-index: 5;
}

/* Typography */
h1:not(.module-page-heading), h2.section-title, h3, h4 { font-family: var(--font-headline); color: var(--text-headline); font-weight: 300; text-transform: uppercase; letter-spacing: 2px; line-height: 1.3; margin-bottom: 25px; }
h1:not(.module-page-heading) { font-size: 28px; }
h2.section-title { font-size: 1.5em; color: var(--text-headline); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--tertiary-dark); }
h3 { font-size: 1.1em; /* Slightly reduced for better hierarchy in track/plan */ color: var(--text-primary); letter-spacing: 1px; text-transform: none;}
h4 { font-size: 1em; color: var(--text-secondary); letter-spacing: 0.5px; font-weight:400; text-transform:none;}
.logo-prominent { font-family: var(--font-headline); font-size: 20px; font-weight: 400; letter-spacing: 1.5px; margin-bottom: 30px; color: var(--text-secondary); text-transform: uppercase; }

/* Forms */
.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; color: var(--text-secondary); margin-bottom: 8px; font-size: 13px; font-weight: 400; text-transform: uppercase; letter-spacing: 0.5px; }
input[type="text"], input[type="email"], input[type="password"], input[type="number"], input[type="date"], select, textarea { width: 100%; padding: 12px 15px; background-color: var(--input-bg); border: 1px solid var(--input-border); border-radius: var(--border-radius_small); color: var(--text-primary); font-size: 15px; font-family: var(--font-body); font-weight: 300; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
textarea { min-height: 100px; line-height: 1.6; }
input[type="text"]::placeholder, input[type="email"]::placeholder, input[type="password"]::placeholder, textarea::placeholder { color: var(--text-tertiary); font-weight: 300; }
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="number"]:focus, input[type="date"]:focus, select:focus, textarea:focus { outline: none; border-color: var(--input-focus-border); box-shadow: 0 0 0 3px rgba(var(--accent-primary-rgb), 0.25); }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a09070'%3E%3Cpath d='M8 11.5a.5.5 0 0 1-.354-.146l-3-3a.5.5 0 0 1 .708-.708L8 10.293l2.646-2.647a.5.5 0 0 1 .708.708l-3 3A.5.5 0 0 1 8 11.5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; background-size: 16px 16px; padding-right: 40px; }
input[type="date"], input[type="number"] {
    appearance: none; /* Try to reset some browser default styles */
    -webkit-appearance: none;
    -moz-appearance: textfield; /* For number input spinners in Firefox */
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Buttons */
.btn, button.btn { background-color: var(--accent-primary); color: var(--button-text-on-accent); padding: 12px 25px; border: 1px solid var(--accent-primary); border-radius: var(--border-radius_small); font-size: 14px; font-weight: 500; font-family: var(--font-headline); text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease; display: block; width: 100%; text-align: center; text-decoration: none; box-sizing: border-box; line-height: 1.5; height: auto; min-height: 46px; position: relative; }
.cta-button-wrapper form { margin: 0; }
.btn:hover { background-color: var(--accent-primary-hover); border-color: var(--accent-primary-hover); }
.btn:active { transform: scale(0.98); }
.btn.btn-outline { background-color: transparent; color: var(--button-text-outlined); border: 1px solid var(--accent-primary); }
.btn.btn-outline:hover { background-color: var(--accent-primary); color: var(--button-text-on-accent); }
.btn.disabled, .btn:disabled { background-color: var(--tertiary-dark) !important; border-color: var(--tertiary-dark) !important; color: var(--text-tertiary) !important; cursor: not-allowed !important; opacity: 0.7; }
.btn.btn-outline.disabled, .btn.btn-outline:disabled { background-color: transparent !important; border-color: var(--text-tertiary) !important; }
.btn-small { padding: 7px 15px !important; font-size: 12px !important; letter-spacing: 0.5px !important; font-weight: 400 !important; min-height: auto !important; }
.btn-icon-action { background: none; border: none; color: var(--text-tertiary); cursor: pointer; padding: 5px; font-size: 16px; line-height: 1; transition: color 0.2s ease; }
.btn-icon-action.delete:hover { color: #e74c3c; }
.btn-icon-action.copy:hover { color: var(--accent-primary); }

/* Links */
.link { color: var(--accent-primary); text-decoration: none; font-size: 14px; margin-top: 20px; display: inline-block; font-weight: 400; transition: color 0.2s ease; }
.link:hover { color: var(--accent-primary-hover); text-decoration: underline; }

/* Flash Messages & Specific Messages */
.error-message, .flash-message { padding: 12px 18px; border-radius: var(--border-radius_small); margin-bottom: 20px; font-size: 14px; font-weight: 300; text-align: left; border: 1px solid transparent; }
.error-message ul { list-style-position: inside; padding-left: 5px; margin-top:5px; }
.error-message { color: var(--error-color); background-color: var(--error-bg); border-color: var(--error-border); }
.flash-message.success { background-color: var(--success-bg); color: var(--success-color); border-color: var(--success-border); text-align: center; }
.flash-message.error { background-color: var(--error-bg); color: var(--error-color); border-color: var(--error-border); text-align: center; }
.flash-message.info { background-color: var(--info-bg); color: var(--info-color); border-color: var(--info-border); text-align: center; }
.flash-message.warning { background-color: var(--warning-bg); color: var(--warning-color); border-color: var(--warning-border); text-align: center; }
.info-message.status-message { padding: 15px; margin-top: 10px; margin-bottom: 10px; border: 1px solid var(--input-border); background-color: var(--input-bg); color: var(--text-secondary); border-radius: var(--border-radius_small); text-align: center; font-size: 14px; line-height: 1.6; }
.lock-icon { display: inline-block; width: 0.9em; height: 0.9em; background-color: var(--text-tertiary); -webkit-mask-size: contain; mask-size: contain; -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2z'/%3E%3C/svg%3E"); vertical-align: -0.1em; margin-left: 8px; }


/* --- Icon Top Navigation & Hover Text --- */
.top-icon-navigation { background-color: rgba(var(--secondary-dark-rgb), 0.9); backdrop-filter: blur(8px); padding: 0 15px; display: flex; justify-content: center; align-items: center; height: 50px; width: 100%; position: fixed; top: 0; left: 0; z-index: 1000; border-bottom: 1px solid var(--tertiary-dark); }
.top-icon-navigation ul { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; height: 100%; }
.top-icon-navigation li { margin: 0; height: 100%; display: flex; align-items: center; }
.top-icon-navigation a { display: flex; align-items: center; justify-content: center; padding: 0 15px; height: 100%; min-width: 50px; text-decoration: none; position: relative; outline: none; }
.top-icon-navigation .nav-icon { font-size: 18px; line-height: 1; color: var(--text-tertiary); transition: color 0.2s ease, transform 0.2s ease; }
.top-icon-navigation a:hover .nav-icon, .top-icon-navigation li.active a .nav-icon { color: var(--accent-primary); }
.top-icon-navigation li.active a .nav-icon { transform: scale(1.1); }
.top-icon-navigation li.disabled a { cursor: not-allowed; }
.top-icon-navigation li.disabled a .nav-icon { color: #444 !important; opacity:0.6; }
.nav-text-hover { font-family: var(--font-body); font-size: 11px; color: var(--text-primary); background-color: var(--bg-color); padding: 4px 8px; border-radius: var(--border-radius_small); border: 1px solid var(--tertiary-dark); box-shadow: 0 2px 5px rgba(0,0,0,0.3); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 400; position: absolute; bottom: -32px; left: 50%; transform: translateX(-50%); white-space: nowrap; opacity: 0; visibility: hidden; transition: opacity 0.2s ease-in-out 0.1s, visibility 0s linear 0.3s; z-index: 1001; }
.top-icon-navigation a:hover .nav-text-hover, .btn:hover .nav-text-hover, .cta-button-wrapper:hover > .btn .nav-text-hover, .inline-share-wrapper:hover > .btn .nav-text-hover { opacity: 1; visibility: visible; transition-delay: 0.1s, 0s; }
.btn:hover .nav-text-hover { bottom: calc(100% + 5px); }
.nav-placeholder-logo { font-family: var(--font-headline); font-size: 20px; color: var(--text-headline); text-transform: uppercase; letter-spacing: 1px; }

/* --- App Footer --- */
.app-footer { position: fixed; bottom: 0; left: 0; width: 100%; background-color: rgba(var(--bg-color-rgb), 0.85); backdrop-filter: blur(10px); display: flex; justify-content: space-between; align-items: center; padding: 0 20px; height: 45px; border-top: 1px solid var(--tertiary-dark); z-index: 999; }
.footer-icons-left { display: flex; align-items: center; }
.app-footer a { color: var(--text-secondary); margin: 0 6px; display: flex; align-items: center; justify-content: center; padding: 4px; }
.app-footer .icon { width: 17px; height: 17px; fill: var(--text-tertiary); transition: fill 0.2s ease, transform 0.2s ease; }
.app-footer a:hover .icon { fill: var(--accent-primary); transform: scale(1.1); }
.debug-tier-toggle { display: flex; align-items: center; font-size: 10px; color: var(--text-tertiary); background-color: rgba(var(--secondary-dark-rgb), 0.7); padding: 3px 6px; border-radius: 3px; border: 1px solid var(--tertiary-dark); z-index: 1001; }
.debug-tier-toggle span { margin-right: 5px; }
.debug-tier-toggle a.tier-toggle-link { color: var(--text-secondary); text-decoration: none; padding: 2px 4px; margin: 0 2px; border: 1px solid transparent; border-radius: 2px; font-weight: 500; }
.debug-tier-toggle a.tier-toggle-link:hover { color: var(--accent-primary); border-color: var(--accent-primary); background-color: rgba(var(--accent-primary-rgb), 0.1); }
.brand-watermark-main { position: fixed; bottom: -40px; right: 25px; font-family: var(--font-headline); font-size: 80px; font-weight: 300; color: var(--accent-primary); letter-spacing: 2px; text-transform: uppercase; pointer-events: none; z-index: 1000; opacity: 0.2; white-space: nowrap; }

/* --- Module Page Heading --- */
.module-page-heading { font-family: var(--font-headline); font-size: 7vw; max-width: 90%; overflow: hidden; white-space: nowrap; font-weight: 200; text-transform: uppercase; letter-spacing: 5px; color: rgba(var(--text-primary-rgb), 0.07); position: absolute; top: 80px; left: 40px; z-index: 1; pointer-events: none; line-height: 0.8; margin:0; }
@media (min-width: 1200px) { .module-page-heading { font-size: 90px; } }
@media (max-width: 768px) { .module-page-heading { font-size: 10vw; left:20px; top: 70px;} }
@media (max-width: 480px) { .module-page-heading { font-size: 12vw; left:10px; top: 65px;} }

/* --- Assessment Page Specific Styles (assess.php) --- */
.assess-container { max-width: 800px; padding: 30px 40px; text-align: left; }
.question-header { margin-bottom: 20px; }
.progress-bar-container { width: 100%; background-color: var(--input-border); border-radius: var(--border-radius_small); margin-bottom: 10px; height:10px; }
.progress-bar { height: 100%; width: 0%; background-color: var(--accent-primary); border-radius: var(--border-radius_small); transition: width 0.3s ease-in-out; }
.progress-text { font-size: 13px; color: var(--text-secondary); text-align: right; margin-bottom:25px; }
.context-info { font-size: 14px; color: var(--text-secondary); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.current-question-text { font-family: var(--font-body); font-size: 20px; color: var(--text-primary); margin-bottom: 30px; font-weight: 300; line-height: 1.6; min-height: 60px; }
.answer-area { margin-bottom: 30px; }
.likert-scale-group { margin-bottom: 30px; padding: 25px; background-color: rgba(var(--bg-color-rgb), 0.3); border-radius: var(--border-radius_small); border: 1px solid var(--tertiary-dark); }
.likert-scale-group label.scale-title { font-size: 16px; color: var(--text-primary); display: block; margin-bottom: 15px; font-weight: 400; text-transform:none; letter-spacing:0;}
.likert-options-wrapper { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.likert-options-wrapper .scale-label { font-size: 13px; color: var(--text-tertiary); flex-basis: 25%; font-weight: 300; }
.likert-options-wrapper .scale-label.min { text-align: left; }
.likert-options-wrapper .scale-label.max { text-align: right; }
.likert-options { display: flex; flex-grow:1; justify-content: space-between; background-color: rgba(var(--input-bg-rgb),0.5); padding:8px; border-radius:var(--border-radius_small); }
.likert-options input[type="radio"] { display: none; }
.likert-options label { padding: 10px 0; border: 1px solid transparent; border-radius: var(--border-radius_small); cursor: pointer; font-size: 15px; transition: background-color 0.2s, color 0.2s, border-color 0.2s; flex-grow:1; text-align:center; color: var(--text-secondary); font-weight:300; }
.likert-options input[type="radio"]:hover + label { background-color: rgba(var(--accent-primary-rgb), 0.1); color:var(--text-primary); }
.likert-options input[type="radio"]:checked + label { background-color: var(--accent-primary); color: var(--button-text-on-accent); border-color: var(--accent-primary); font-weight: 500; }
.assess-container .form-group label { margin-bottom: 8px; font-size:16px; color: var(--text-primary); text-transform:none; letter-spacing:0; }
.navigation-buttons { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; border-top: 1px solid var(--tertiary-dark); padding-top: 30px; }
.navigation-buttons .btn { width: auto; min-width: 160px; padding: 10px 25px; }
.btn.save-only { background-color: transparent; border-color: var(--text-tertiary); color: var(--text-tertiary); }
.btn.save-only:hover { background-color: var(--tertiary-dark); color: var(--text-primary); border-color: var(--tertiary-dark); }
.completion-message { text-align: center; padding: 40px 20px; border: 1px solid var(--tertiary-dark); border-radius: var(--border-radius); margin-top: 30px; background-color: var(--secondary-dark); }
.completion-message h2 { font-size: 24px; color: var(--accent-primary); margin-bottom: 15px; }
.completion-message p { font-size: 16px; color: var(--text-primary); line-height: 1.6; }
.completion-message .btn { max-width: 280px; margin: 30px auto 0; }
.maturity-scale-description-container { margin-top: -15px; margin-bottom: 25px; padding: 10px 15px; background-color: rgba(var(--input-bg-rgb), 0.3); border-left: 3px solid var(--text-tertiary); border-radius: var(--border-radius_small); }
.maturity-scale-helper-text { font-size: 0.85em; color: var(--text-secondary); line-height: 1.5; margin: 0; }
.maturity-scale-helper-text em { font-weight: 500; color: var(--text-primary); }
.answer-area { margin-top: 10px; }

/* --- Assessment Review Page Specific Styles --- */
.setup-container { max-width: 1000px; padding: 30px; text-align:left; }
.pillar-setup { margin-bottom: 20px; padding:15px; border: 1px solid var(--tertiary-dark); border-radius:var(--border-radius_small); background-color: rgba(var(--bg-color-rgb),0.3); }
.pillar-setup-title { font-size: 1.3em; margin-bottom: 15px; padding-bottom: 8px; border-bottom: 1px solid var(--tertiary-dark); color: var(--text-headline); }
.category-setup { margin-bottom: 15px; padding-left: 15px; border-left: 2px solid var(--accent-primary); }
.category-setup-title { font-size: 1.1em; margin-bottom: 10px; color: var(--text-primary); }
.topic-list-item { list-style-type: none; padding: 10px 0; border-bottom: 1px solid var(--tertiary-dark); font-size: 15px; color: var(--text-primary); font-weight: 300; display: flex; justify-content: space-between; align-items: center; gap: 15px; }
.topic-list-item:last-child { border-bottom: none; }
.topic-ul { padding-left: 0; margin-bottom:5px; }
.topic-content-wrapper { flex-grow: 1; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.topic-text { margin-right: 5px; }
.topic-type-tag, .topic-format-tag { font-size: 10px; color: var(--bg-color); padding: 3px 7px; border-radius: var(--border-radius_small); text-transform: uppercase; font-weight: 500; white-space: nowrap; }
.topic-type-tag.default { background-color: var(--text-secondary); }
.topic-type-tag.custom { background-color: var(--accent-primary); }
.topic-format-tag.qualitative { background-color: var(--text-tertiary); }
.topic-format-tag.rating { background-color: var(--text-secondary); }
.add-custom-topic-controls { margin-top: 15px; }
.add-topic-btn-reveal { width: auto !important; display: inline-block !important; padding: 7px 15px !important; font-size: 12px !important; letter-spacing: 0.5px !important; font-weight: 400 !important; }
.add-topic-btn-reveal .nav-icon { font-size: 0.9em; margin-right: 5px; }
.add-custom-topic-form { margin-top: 10px; padding: 15px 20px; background-color: rgba(var(--input-bg-rgb),0.5); border-radius: var(--border-radius_small); border-top: 1px dashed var(--tertiary-dark); }
.add-custom-topic-form h4 { font-size: 16px; color: var(--text-primary); margin-bottom: 15px; }
.inline-topic-form .form-group { margin-bottom: 15px; }
.inline-topic-form textarea { min-height: 60px; font-size: 14px; }
.inline-topic-form .form-actions { display: flex; gap: 10px; margin-top: 15px; }
.inline-topic-form .form-actions .btn { width: auto !important; display: inline-block !important; flex-grow: 0; }
.add-topic-btn-reveal, .add-topic-save-btn { min-width: 130px; text-align: center; }
.delete-topic-form { display: inline-flex; align-items: center; flex-shrink: 0; }
.finalize-form { margin-top: 40px; text-align: center; }
.finalize-form .btn { max-width: 350px; padding:12px 25px; }
.setup-instructions { margin-bottom:25px; padding:18px; background-color:rgba(var(--accent-primary-rgb), 0.05); border-left:3px solid var(--accent-primary); color: var(--text-secondary); border-radius:var(--border-radius_small); font-size:14px; line-height:1.6;}
.setup-instructions.disabled-section p { color: var(--text-tertiary); font-style: italic; }

/* Communicate Page Styles */
.communicate-container { max-width: 900px; }
.export-section { margin-bottom: 30px; padding: 20px; background-color: var(--secondary-dark); border-radius: var(--border-radius); border: 1px solid var(--tertiary-dark); }
.export-options { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
.export-options .btn { width: auto; min-width: 220px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.export-options .btn .nav-icon { margin-right: 0; }
.feature-soon-tag {
    font-size: 0.6em;
    color: var(--info-color);
    background-color: var(--info-bg);
    border: 1px solid var(--info-border);
    padding: 2px 6px;
    border-radius: var(--border-radius_small);
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 10px;
}


/* --- Contextual Guidance Header --- */
.contextual-guidance-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    margin-bottom: 30px; /* Space below the header */
    background-color: rgba(var(--accent-primary-rgb), 0.05);
    border-left: 3px solid var(--accent-primary);
    border-radius: var(--border-radius_small);
}

.guidance-icon {
    font-size: 1.8em;
    color: var(--accent-primary);
    margin-top: 5px; /* Align with first line of text */
}

.guidance-text strong {
    display: block;
    font-size: 1.1em;
    color: var(--text-headline);
    margin-bottom: 5px;
    font-weight: 500;
}

.guidance-text p {
    font-size: 0.95em;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}


.btn.btn-warning-confirm {
    border-color: var(--warning-color);
    color: var(--warning-color);
}
.btn.btn-warning-confirm:hover {
    background-color: var(--warning-color);
    color: var(--bg-color);
}
