/* Integral Media - Clean CSS Implementation */
/* Fresh start - no conflicts, no bloat */

/* ===== SPLASH PAGE LOGIN ===== */
.splash-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--integral-blue) 0%, var(--integral-blue-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.splash-container {
    background: var(--neutral-white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.splash-logo {
    margin-bottom: 2rem;
}

.splash-brand {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.splash-content h1 {
    font-size: 1.75rem;
    color: var(--integral-blue-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.splash-content p {
    color: var(--neutral-dark);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.login-form {
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--integral-blue-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--neutral-light);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: var(--integral-blue);
}

.login-btn {
    width: 100%;
    padding: 0.875rem;
    background: var(--integral-blue);
    color: var(--neutral-white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-btn:hover {
    background: var(--integral-blue-dark);
}

.login-error {
    color: #dc3545;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 0.75rem;
    border-radius: 6px;
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

.success-message {
    color: #155724;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 0.75rem;
    border-radius: 6px;
    margin: 1rem 0;
    font-size: 0.9rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.back-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--neutral-light);
    color: var(--integral-blue-dark);
    border: 2px solid var(--neutral-light);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.back-btn:hover {
    background: var(--neutral-white);
    border-color: var(--integral-blue);
    color: var(--integral-blue);
}

/* ===== END SPLASH PAGE ===== */

/* CSS Variables */
:root {
    --sidebar-width: 280px;
    --integral-blue: #214e9c;
    --integral-blue-light: #5cb3f0;
    --integral-blue-dark: #1e3a8a;
    --neutral-white: #ffffff;
    --neutral-gray-50: #f9fafb;
    --neutral-gray-100: #f3f4f6;
    --neutral-gray-200: #e5e7eb;
    --neutral-gray-300: #d1d5db;
    --neutral-gray-600: #4b5563;
    --neutral-gray-700: #374151;
    --neutral-gray-800: #1f2937;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--neutral-gray-800);
    background-color: var(--neutral-gray-50);
}

/* SIDEBAR - Fixed position, always 280px wide */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--integral-blue);
    color: var(--neutral-white);
    overflow-y: auto;
    z-index: 1000;
    transition: transform 0.3s ease;
}

/* MAIN CONTENT - Always offset by sidebar width */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

/* Mobile: Hide sidebar, full width content */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
}

/* Sidebar content */
.sidebar-header {
    padding: 1.5rem 2rem;
    background: var(--integral-blue-dark);
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-logo {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu {
    padding: 1rem 0;
}

.nav-section {
    margin-bottom: 0.5rem;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 2rem;
    color: var(--neutral-white);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 0.9rem;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--integral-blue-light);
}

.nav-item.active {
    background: rgba(255, 255, 255, 0.15);
    border-left-color: var(--integral-blue-light);
    font-weight: 500;
}

.nav-item i:first-child {
    margin-right: 0.75rem;
    width: 1rem;
}

.nav-chevron {
    margin-left: auto;
    margin-right: 0;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.nav-subitems {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
}

.nav-section.expanded .nav-subitems {
    max-height: 200px;
}

.nav-subitem {
    display: block;
    padding: 0.5rem 2rem 0.5rem 3.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.nav-subitem:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--neutral-white);
    border-left-color: var(--integral-blue-light);
}

/* Top header - Enhanced */
.top-header {
    background: var(--neutral-white);
    padding: 1.5rem 2rem;
    height: 140px;
    display: flex;
    align-items: center;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.header-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.page-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--integral-blue);
    margin: 0;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 0.85rem;
    color: var(--neutral-gray-600);
    margin: 0.25rem 0 0 0;
    line-height: 1.3;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--integral-blue);
    cursor: pointer;
    padding: 0.5rem;
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
}

/* Removed breadcrumb and header action styles - using sidebar navigation only */

/* Content sections */
.content-area {
    padding: 0 2rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    margin-bottom: 3rem;
}

section:last-child {
    margin-bottom: 0;
}

/* Removed section headers - using top header instead */

/* Cards and components - FLAT DESIGN */
.card {
    background: var(--neutral-white);
    padding: 0;
    margin-bottom: 2rem;
}

.card h4 {
    background: var(--integral-blue);
    color: var(--neutral-white);
    margin: 0;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.card .card-content {
    padding: 1.5rem;
}

.card p {
    color: var(--neutral-gray-700);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.card p:last-child {
    margin-bottom: 0;
}

.card p strong {
    color: var(--neutral-gray-800);
    font-weight: 500;
}

.card ul {
    margin: 1rem 0;
    padding-left: 0;
    list-style: none;
}

.card ul li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--neutral-gray-700);
    line-height: 1.5;
    border-bottom: 1px solid var(--neutral-gray-100);
    font-size: 0.9rem;
}

.card ul li:last-child {
    border-bottom: none;
}

.card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--integral-blue);
    font-weight: 400;
    font-size: 0.9rem;
}

.card ul li strong {
    color: var(--integral-blue-dark);
    font-weight: 500;
}

.highlight-box {
    background: var(--integral-blue);
    color: var(--neutral-white);
    padding: 1.2rem 2rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: 0.01em;
    border-radius: 4px;
    position: relative;
}

/* Section Summary */
.section-summary {
    background: var(--neutral-white);
    padding: 1.5rem 2rem;
    margin: 0 0 2rem 0;
    border-radius: 4px;
    border: 1px solid var(--neutral-gray-100);
}

.section-summary p {
    margin: 0;
    color: var(--neutral-gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Good to Know Section */
.good-to-know {
    background: var(--neutral-white);
    border: 1px solid var(--integral-blue-light);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0 0 0;
    position: relative;
    overflow: hidden;
}

.good-to-know::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--integral-blue-light);
}

.good-to-know-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--integral-blue);
    font-weight: 600;
    font-size: 1rem;
}

.good-to-know-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--integral-blue-light);
    color: var(--neutral-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.good-to-know-content {
    margin-left: 3rem;
}

.good-to-know-content p {
    margin: 0 0 0.75rem 0;
    color: var(--neutral-gray-700);
    font-size: 0.9rem;
    line-height: 1.5;
}

.good-to-know-content p:last-child {
    margin-bottom: 0;
}

.good-to-know-content strong {
    color: var(--integral-blue-dark);
    font-weight: 500;
}

@media (max-width: 768px) {
    .good-to-know-content {
        margin-left: 0;
    }
    
    .good-to-know-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .good-to-know-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.grid > div {
    background: var(--neutral-gray-100);
    padding: 1.25rem;
}

.grid h5 {
    color: var(--integral-blue-dark);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.grid p {
    color: var(--neutral-gray-700);
    line-height: 1.5;
    margin: 0;
    font-size: 0.85rem;
}

/* Overview Focus Areas */
.overview-focus-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.focus-area {
    background: var(--neutral-white);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--neutral-gray-100);
    transition: all 0.3s ease;
}

.focus-area:hover {
    border-color: var(--integral-blue-light);
}

.focus-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--integral-blue-light);
    color: var(--neutral-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.focus-area h3 {
    color: var(--integral-blue-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.focus-area p {
    color: var(--neutral-gray-700);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.focus-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus-highlights li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--neutral-gray-600);
    font-size: 0.85rem;
    line-height: 1.4;
    border-bottom: 1px solid var(--neutral-gray-100);
}

.focus-highlights li:last-child {
    border-bottom: none;
}

.focus-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--integral-blue);
    font-weight: 600;
    font-size: 0.8rem;
}

/* Mobile responsive for focus areas */
@media (max-width: 768px) {
    .overview-focus-areas {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .focus-area {
        padding: 1.5rem;
    }
    
    .focus-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

/* Floating Feedback Widget */
.feedback-widget {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    font-family: inherit;
}

/* Toggle Button */
.feedback-toggle {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--integral-blue);
    color: var(--neutral-white);
    border: none;
    cursor: pointer;
    font-size: 1.75rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--neutral-white);
}

.feedback-toggle:hover {
    background: var(--integral-blue-dark);
    transform: scale(1.05);
}

.feedback-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* Feedback Panel */
.feedback-panel {
    position: absolute;
    top: 90px;
    right: 0;
    width: 400px;
    max-height: 600px;
    background: var(--neutral-white);
    border-radius: 12px;
    border: 1px solid var(--neutral-gray-200);
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.feedback-panel.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.feedback-panel-header {
    background: var(--integral-blue);
    color: var(--neutral-white);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feedback-panel-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.feedback-close {
    background: none;
    border: none;
    color: var(--neutral-white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.feedback-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* User Info Section */
.feedback-user-info {
    padding: 1.5rem;
}

.feedback-user-info h4 {
    margin: 0 0 1rem 0;
    color: var(--neutral-gray-800);
    font-size: 1rem;
}

.feedback-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feedback-input-group input {
    padding: 0.75rem;
    border: 1px solid var(--neutral-gray-300);
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.2s ease;
}

.feedback-input-group input:focus {
    outline: none;
    border-color: var(--integral-blue);
}

.feedback-start-btn {
    width: 100%;
    background: var(--integral-blue);
    color: var(--neutral-white);
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.feedback-start-btn:hover {
    background: var(--integral-blue-dark);
}

/* Feedback Sections */
.feedback-sections {
    padding: 1.5rem;
    max-height: 500px;
    overflow-y: auto;
}

.feedback-progress {
    margin-bottom: 1.5rem;
}

.progress-text {
    font-size: 0.85rem;
    color: var(--neutral-gray-600);
    margin-bottom: 0.5rem;
    display: block;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--neutral-gray-200);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--integral-blue);
    border-radius: 3px;
    transition: width 0.3s ease;
    width: 0%;
}

/* Current Section */
.current-section {
    margin-bottom: 1.5rem;
}

.current-section h4 {
    margin: 0 0 1rem 0;
    color: var(--neutral-gray-800);
    font-size: 1rem;
}

.section-feedback-options {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.feedback-quick-btn {
    flex: 1;
    min-width: 90px;
    padding: 0.5rem 0.75rem;
    border: 2px solid transparent;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.feedback-quick-btn.good {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.feedback-quick-btn.good:hover,
.feedback-quick-btn.good.selected {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.feedback-quick-btn.needs-work {
    background: #fff3cd;
    color: #856404;
    border-color: #ffeaa7;
}

.feedback-quick-btn.needs-work:hover,
.feedback-quick-btn.needs-work.selected {
    background: #ffc107;
    color: #212529;
    border-color: #ffc107;
}

.feedback-quick-btn.suggestion {
    background: #d1ecf1;
    color: #0c5460;
    border-color: #bee5eb;
}

.feedback-quick-btn.suggestion:hover,
.feedback-quick-btn.suggestion.selected {
    background: #17a2b8;
    color: white;
    border-color: #17a2b8;
}

#sectionFeedbackText {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--neutral-gray-300);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.85rem;
    resize: vertical;
    margin-bottom: 1rem;
}

#sectionFeedbackText:focus {
    outline: none;
    border-color: var(--integral-blue);
}

.section-feedback-actions {
    display: flex;
    gap: 0.5rem;
}

.save-section-btn,
.skip-section-btn {
    flex: 1;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.save-section-btn {
    background: var(--integral-blue);
    color: var(--neutral-white);
}

.save-section-btn:hover {
    background: var(--integral-blue-dark);
}

.skip-section-btn {
    background: var(--neutral-gray-200);
    color: var(--neutral-gray-700);
}

.skip-section-btn:hover {
    background: var(--neutral-gray-300);
}

/* Section Navigation */
.section-navigation {
    margin-bottom: 1.5rem;
}

.section-navigation h5 {
    margin: 0 0 0.75rem 0;
    color: var(--neutral-gray-800);
    font-size: 0.9rem;
}

.section-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    max-height: 150px;
    overflow-y: auto;
}

.section-item {
    padding: 0.5rem 0.75rem;
    background: var(--neutral-gray-50);
    border: 1px solid var(--neutral-gray-200);
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-item:hover {
    background: var(--neutral-gray-100);
}

.section-item.completed {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.section-item.active {
    background: var(--integral-blue);
    color: var(--neutral-white);
    border-color: var(--integral-blue);
}

.section-status {
    font-size: 0.7rem;
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
}

/* Submit All */
.feedback-submit-area {
    border-top: 1px solid var(--neutral-gray-200);
    padding-top: 1rem;
}

.feedback-submit-all {
    width: 100%;
    background: #28a745;
    color: var(--neutral-white);
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.feedback-submit-all:hover:not(:disabled) {
    background: #218838;
}

.feedback-submit-all:disabled {
    background: var(--neutral-gray-400);
    cursor: not-allowed;
}

/* Section Feedback Buttons */
.highlight-box {
    position: relative;
}

.section-feedback-btn {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    background: var(--integral-blue-light);
    color: var(--neutral-white);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.section-feedback-btn:hover {
    background: var(--integral-blue);
    transform: translateY(-50%) scale(1.1);
}

.section-feedback-btn.has-feedback {
    background: #28a745;
}

.section-feedback-btn.has-feedback:hover {
    background: #218838;
}

/* Collected Feedback Styles */
.feedback-instructions {
    background: var(--neutral-gray-50);
    padding: 0.75rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--neutral-gray-600);
}

.feedback-instructions i {
    color: var(--integral-blue);
    margin-right: 0.5rem;
}

.collected-feedback {
    margin-bottom: 1.5rem;
}

.feedback-list {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid var(--neutral-gray-200);
    border-radius: 6px;
}

.feedback-item {
    padding: 0.75rem;
    border-bottom: 1px solid var(--neutral-gray-200);
    background: var(--neutral-white);
}

.feedback-item:last-child {
    border-bottom: none;
}

.feedback-item-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.feedback-item-title {
    font-weight: 600;
    color: var(--neutral-gray-800);
    font-size: 0.85rem;
}

.feedback-item-rating {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    color: var(--neutral-white);
    font-weight: 500;
}

.feedback-item-rating.good {
    background: #28a745;
}

.feedback-item-rating.needs-work {
    background: #ffc107;
    color: var(--neutral-gray-800);
}

.feedback-item-rating.suggestion {
    background: #17a2b8;
}

.feedback-item-comment {
    font-size: 0.8rem;
    color: var(--neutral-gray-600);
    margin-top: 0.5rem;
    font-style: italic;
}

.feedback-item-actions {
    margin-top: 0.5rem;
}

.edit-feedback-btn, .remove-feedback-btn {
    background: none;
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    cursor: pointer;
    border-radius: 3px;
    margin-right: 0.5rem;
}

.edit-feedback-btn {
    color: var(--integral-blue);
}

.edit-feedback-btn:hover {
    background: var(--neutral-gray-100);
}

.remove-feedback-btn {
    color: #dc3545;
}

.remove-feedback-btn:hover {
    background: rgba(220, 53, 69, 0.1);
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .feedback-widget {
        top: 15px;
        right: 15px;
    }
    
    .feedback-toggle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feedback-panel {
        width: calc(100vw - 30px);
        max-width: 350px;
        right: 15px;
        top: 85px;
    }
    
    .section-feedback-options {
        flex-direction: column;
    }
    
    .feedback-quick-btn {
        min-width: auto;
    }
}

/* Utility classes */
.mb-2 { margin-bottom: 0.5rem; }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }