/* ============================================
   FUTURISTIC DARK MODE THEME
   Sharp, modern, cyberpunk-inspired design
   ============================================ */

/* CSS Variables */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a24;
    --bg-card-hover: #22222e;
    --bg-input: #0f0f16;
    
    --border-color: #2a2a3a;
    --border-glow: #00d4ff;
    --border-accent: #7c3aed;
    
    --text-primary: #e8e8ec;
    --text-secondary: #8888a0;
    --text-muted: #5a5a70;
    
    --accent-cyan: #00d4ff;
    --accent-purple: #7c3aed;
    --accent-pink: #ec4899;
    --accent-green: #10b981;
    --accent-orange: #f59e0b;
    --accent-red: #ef4444;
    
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-danger: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    --gradient-card: linear-gradient(180deg, rgba(0,212,255,0.03) 0%, transparent 100%);
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 20px rgba(0,212,255,0.15);
    --shadow-glow-purple: 0 0 20px rgba(124,58,237,0.15);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    --font-mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', monospace;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

/* Links */
a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--accent-purple);
    text-shadow: 0 0 10px rgba(0,212,255,0.5);
}

/* Selection */
::selection {
    background: var(--accent-purple);
    color: white;
}

/* Layout */
.app-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    height: 100vh;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.sidebar-home-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.sidebar-header h1 {
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    text-align: center;
}

.sidebar-logo {
    max-width: 180px;
    max-height: 60px;
    object-fit: contain;
}

.sidebar-nav {
    flex: 1;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.sidebar-nav a:hover {
    color: var(--text-primary);
    background: rgba(0,212,255,0.1);
    text-shadow: none;
}

.sidebar-nav a.active {
    color: var(--accent-cyan);
    background: rgba(0,212,255,0.1);
}

.nav-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0.7;
}

.sidebar-nav a:hover .nav-icon,
.sidebar-nav a.active .nav-icon {
    opacity: 1;
}

.sidebar-footer {
    padding: 16px 12px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-footer a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.sidebar-footer a:hover {
    color: var(--text-primary);
    background: rgba(0,212,255,0.1);
    text-shadow: none;
}

.sidebar-footer a.logout:hover {
    color: var(--accent-red);
    background: rgba(239,68,68,0.1);
}

/* Mobile Menu Toggle */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    padding: 0 16px;
    align-items: center;
    justify-content: space-between;
}

.mobile-header h1 {
    font-size: 1rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-md);
    transition: background 0.2s ease;
}

.hamburger:hover {
    background: rgba(0,212,255,0.1);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
}

/* Main Content Area */
.main-content {
    flex: 1;
    margin-left: 260px;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px;
}

/* Legacy header support - hidden by default */
header {
    display: none;
}

nav {
    display: flex;
    gap: 4px;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

nav a:hover {
    color: var(--text-primary);
    background: rgba(0,212,255,0.1);
    text-shadow: none;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--gradient-primary);
    transition: transform 0.2s ease;
}

nav a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Cards */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.5;
}

.card:hover {
    border-color: rgba(0,212,255,0.3);
    box-shadow: var(--shadow-glow);
}

/* Auth pages */
.auth-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: radial-gradient(120% 120% at 50% 20%, rgba(0,212,255,0.08), transparent 50%), var(--bg-primary);
}

.auth-card {
    width: 100%;
    max-width: 480px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-glow);
}

.auth-title {
    text-align: center;
    margin-bottom: 8px;
    font-size: 1.8rem;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-label {
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    display: block;
}

.auth-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-input:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0,212,255,0.12);
}

.auth-code {
    text-align: center;
    font-size: 1.8rem;
    letter-spacing: 8px;
}

.auth-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-btn {
    width: 100%;
}

.auth-link {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.auth-link:hover {
    color: var(--accent-cyan);
}

.card-form {
    padding: 32px;
}

.card h2 {
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-card);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: inherit;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: var(--shadow-glow);
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0,212,255,0.4);
    color: white;
}

.btn-success {
    background: var(--gradient-success);
    border: none;
    color: white;
}

.btn-success:hover {
    box-shadow: 0 0 30px rgba(16,185,129,0.4);
    color: white;
}

.btn-danger {
    background: var(--gradient-danger);
    border: none;
    color: white;
}

.btn-danger:hover {
    box-shadow: 0 0 30px rgba(239,68,68,0.4);
    color: white;
}

.btn-secondary {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

.btn-info {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    border: none;
    color: white;
}

.btn-info:hover {
    box-shadow: 0 0 30px rgba(124,58,237,0.4);
    color: white;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.8rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.back-link:hover {
    color: var(--accent-cyan);
}

/* Uniform Height Actions */
.actions-uniform {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch;
}

.actions-uniform .btn,
.actions-uniform button.btn {
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.actions-uniform .inline-form {
    display: flex;
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
    margin-top: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

table {
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
}

th, td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background: var(--bg-secondary);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    position: sticky;
    top: 0;
}

tr {
    transition: all 0.2s ease;
}

tr:hover {
    background: var(--bg-card-hover);
}

tr:last-child td {
    border-bottom: none;
}

.truncate {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Table Logo */
.th-logo, .td-logo {
    width: 48px;
    padding: 8px !important;
}

.table-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    background: white;
    padding: 4px;
}

/* Clickable Rows */
.clickable-row {
    cursor: pointer;
    transition: all 0.2s ease;
}

.clickable-row:hover {
    background: rgba(0,212,255,0.05);
}

.row-link {
    color: var(--accent-cyan);
    font-weight: 500;
}

.row-link:hover {
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0,212,255,0.5);
}

/* Dropdown */
.actions-cell {
    position: relative;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-btn:hover {
    border-color: var(--accent-cyan);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: var(--bg-card);
    min-width: 140px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    z-index: 100;
    overflow: hidden;
}

.dropdown-content a,
.dropdown-content button {
    display: block;
    width: 100%;
    padding: 10px 16px;
    text-align: left;
    text-decoration: none;
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-content a:hover,
.dropdown-content button:hover {
    background: rgba(0,212,255,0.1);
    color: var(--accent-cyan);
}

.dropdown-content button.delete-btn {
    color: var(--accent-red);
}

.dropdown-content button.delete-btn:hover {
    background: rgba(239,68,68,0.1);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Forms */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0,212,255,0.1), var(--shadow-glow);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238888a0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Logo Upload */
.logo-upload-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.logo-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    width: fit-content;
}

.logo-preview img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.logo-remove-btn {
    background: var(--accent-red);
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.logo-remove-btn:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.form-group input[type="file"] {
    background: var(--bg-input);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-group input[type="file"]:hover {
    border-color: var(--accent-cyan);
    background: rgba(0,212,255,0.05);
}

.form-group input[type="file"]::file-selector-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    margin-right: 12px;
    transition: all 0.2s ease;
}

.form-group input[type="file"]::file-selector-button:hover {
    filter: brightness(1.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.required::after {
    content: " *";
    color: var(--accent-red);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}

/* Score Options (Radio Buttons) */
.score-options {
    display: flex;
    gap: 8px;
}

.score-option {
    flex: 1;
}

.score-option input {
    display: none;
}

.score-option label {
    display: block;
    padding: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-input);
}

.score-option input:checked + label {
    border-color: var(--accent-cyan);
    background: rgba(0,212,255,0.1);
    color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0,212,255,0.2);
}

.score-option label:hover {
    border-color: var(--accent-cyan);
    color: var(--text-primary);
}

/* Category Checkboxes */
.category-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.category-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent-cyan);
}

.category-checkbox label {
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Badges & Labels */
.category {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.category-Reactive { 
    background: rgba(239,68,68,0.15); 
    color: #f87171; 
    border: 1px solid rgba(239,68,68,0.3);
}
.category-Opportunistic { 
    background: rgba(245,158,11,0.15); 
    color: #fbbf24; 
    border: 1px solid rgba(245,158,11,0.3);
}
.category-Integrated { 
    background: rgba(0,212,255,0.15); 
    color: var(--accent-cyan); 
    border: 1px solid rgba(0,212,255,0.3);
}
.category-Ecosystem { 
    background: rgba(16,185,129,0.15); 
    color: #34d399; 
    border: 1px solid rgba(16,185,129,0.3);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-reactive, .badge-Reactive { 
    background: rgba(239,68,68,0.15); 
    color: #f87171; 
}
.badge-opportunistic, .badge-Opportunistic { 
    background: rgba(245,158,11,0.15); 
    color: #fbbf24; 
}
.badge-integrated, .badge-Integrated { 
    background: rgba(0,212,255,0.15); 
    color: var(--accent-cyan); 
}
.badge-ecosystem, .badge-Ecosystem { 
    background: rgba(16,185,129,0.15); 
    color: #34d399; 
}

.badge-success {
    background: rgba(16,185,129,0.15);
    color: #34d399;
}

.badge-danger {
    background: rgba(239,68,68,0.15);
    color: #f87171;
}

.badge-warning {
    background: rgba(245,158,11,0.15);
    color: #fbbf24;
}

.badge-secondary {
    background: rgba(136,136,160,0.15);
    color: var(--text-secondary);
}

.badge-info {
    background: rgba(0,212,255,0.15);
    color: var(--accent-cyan);
}

.badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
}

.score-1 { background: rgba(239,68,68,0.2); color: #f87171; }
.score-2 { background: rgba(249,115,22,0.2); color: #fb923c; }
.score-3 { background: rgba(245,158,11,0.2); color: #fbbf24; }
.score-4 { background: rgba(16,185,129,0.2); color: #34d399; }
.score-5 { background: rgba(16,185,129,0.25); color: #10b981; }

/* Customer Header with Logo */
.customer-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.customer-header h2 {
    margin: 0;
}

.meeting-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    margin: 10px 0 6px;
    border: 1px solid #1f2937;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(59,130,246,0.1), rgba(59,130,246,0.02));
}

.meeting-bar__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    flex: 0 0 auto;
}

.meeting-bar__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e5e7eb;
    flex-wrap: wrap;
}

.meeting-time {
    margin-right: 12px;
}

.meeting-attendee {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 6px;
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.04);
}

.meeting-attendee .att-email {
    font-size: 12px;
    color: #cbd5e1;
}

.customer-logo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    overflow: hidden;
}

.customer-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Customer Info Grid */
.customer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.info-item {
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}
#meeting-status-container small {
    display: grid;
    width: fit-content;
    grid-template-columns: max-content auto;
    place-items: center;
    width: -webkit-fill-available;
}

.info-item label {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 6px;
}

.info-item span {
    color: var(--text-primary);
    font-size: 1rem;
}

.info-text {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* Actions Row */
.actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.actions-inline {
    display: inline-flex;
    gap: 8px;
}

.inline-form {
    display: inline;
}

/* Header Row (title + button) */
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.header-actions {
    display: flex;
    gap: 10px;
}

/* Stats Cards */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-secondary);
}

.empty-state p {
    margin-bottom: 16px;
}

/* Import Page */
.info-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 24px;
    overflow: hidden;
}

.info-box h3 {
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--text-primary);
}

.info-box p {
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.info-box pre {
    background: var(--bg-primary);
    color: var(--accent-cyan);
    padding: 16px;
    border-radius: var(--radius-md);
    overflow-x: auto;
    font-size: 0.85rem;
    font-family: var(--font-mono);
    white-space: pre-wrap;
    word-wrap: break-word;
    border: 1px solid var(--border-color);
}

.csv-format-table {
    width: 100%;
    margin-top: 8px;
    table-layout: fixed;
}

.csv-format-table th,
.csv-format-table td {
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}

.csv-format-table th:first-child,
.csv-format-table td:first-child {
    width: 100px;
}

.csv-format-table th:nth-child(2),
.csv-format-table td:nth-child(2) {
    width: 70px;
}

.csv-format-table td:last-child {
    word-wrap: break-word;
}

.csv-format-table code {
    background: var(--bg-primary);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-family: var(--font-mono);
    color: var(--accent-cyan);
}

input[type="file"] {
    padding: 16px;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    width: 100%;
    cursor: pointer;
    background: var(--bg-input);
    color: var(--text-primary);
    transition: all 0.2s ease;
}

input[type="file"]:hover {
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-glow);
}

/* Import Result */
.import-summary {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin: 32px 0;
}

.import-stat {
    text-align: center;
    padding: 24px 32px;
    border-radius: var(--radius-lg);
}

.import-stat.success {
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.3);
    color: #34d399;
}

.import-stat.error {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    color: #f87171;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.error-list {
    background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.3);
    border-radius: var(--radius-lg);
    padding: 16px;
    margin-bottom: 24px;
}

.error-list h3 {
    color: #fbbf24;
    margin-bottom: 8px;
}

.error-list ul {
    margin: 0;
    padding-left: 24px;
    color: #fbbf24;
}

/* Interview Page */
.interview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.interview-info h2 {
    margin-bottom: 8px;
    color: var(--text-primary);
}

.interview-progress {
    text-align: right;
}

.progress-text {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.progress-bar {
    width: 200px;
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.interview-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.questions-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.question-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-left: 4px solid var(--accent-cyan);
    transition: all 0.3s ease;
}

.question-card:hover {
    box-shadow: var(--shadow-glow);
}

.question-card.answered {
    border-left-color: var(--accent-green);
}

.question-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.question-number {
    font-weight: 700;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
}

.question-segment, .question-category {
    font-size: 0.8rem;
    padding: 4px 10px;
    background: var(--bg-secondary);
    border-radius: 20px;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.status-badge {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: auto;
    font-weight: 600;
}

.status-badge.answered {
    background: rgba(16,185,129,0.15);
    color: #34d399;
}

.status-badge.pending {
    background: rgba(245,158,11,0.15);
    color: #fbbf24;
}

.question-goal {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent-purple);
}

.question-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.6;
    color: var(--text-primary);
}

.answer-form .form-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.score-group {
    flex-shrink: 0;
}

.notes-group {
    flex-grow: 1;
}

.answer-form .form-actions {
    margin-top: 16px;
}

/* Summary Stats */
.summary-stats {
    display: flex;
    gap: 16px;
    margin: 24px 0;
}

.summary-stats .stat-card {
    flex: 1;
}

/* Responses Table */
.responses-table .question-cell {
    max-width: 300px;
}

.responses-table .question-preview {
    font-weight: 500;
    color: var(--text-primary);
}

.responses-table .goal-preview {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.responses-table .answer-cell {
    max-width: 300px;
}

.responses-table .notes-cell {
    max-width: 150px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.responses-table tr.unanswered {
    background: rgba(245,158,11,0.05);
}

/* Question Navigation */
.question-navigation {
    text-align: center;
    margin: 24px 0 16px;
}

.question-counter {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.question-nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.btn-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Question Dots */
.question-dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.question-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    transition: all 0.2s ease;
}

.question-dots .dot:hover {
    transform: scale(1.3);
    border-color: var(--accent-cyan);
    text-decoration: none;
}

.question-dots .dot.current {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(0,212,255,0.5);
}

.question-dots .dot.answered {
    background: var(--accent-green);
    border-color: var(--accent-green);
}

.question-dots .dot.current.answered {
    background: var(--accent-green);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px var(--accent-cyan), 0 0 15px rgba(0,212,255,0.5);
}

/* Mini Progress Bar for Table */
.progress-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 120px;
}

.progress-bar-mini {
    flex: 1;
    height: 6px;
    background: var(--bg-secondary);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-mini .progress-fill {
    height: 100%;
    background: var(--accent-cyan);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-bar-mini .progress-fill.complete {
    background: var(--accent-green);
}

.progress-text-mini {
    font-size: 0.85rem;
    color: var(--text-secondary);
    min-width: 40px;
    text-align: right;
    font-family: var(--font-mono);
}

/* Share/Public Interview Pages */
.share-page {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #1a1a2e 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.share-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(0,212,255,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(124,58,237,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.share-header-bar {
    background: rgba(26,26,36,0.95);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.share-header-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
}

.share-brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 4px 8px;
    border-radius: var(--radius-md);
}

.share-header-logo {
    height: 32px;
    max-width: 80px;
    object-fit: contain;
}

.share-brand {
    font-weight: 600;
    color: var(--text-primary);
}

.share-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.share-progress .progress-bar-mini {
    width: 100px;
}

.share-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 16px;
    position: relative;
    z-index: 1;
}

.share-login-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    padding: 48px 32px;
    text-align: center;
    max-width: 440px;
    margin: 0 auto;
}

.share-header h1 {
    font-size: 0.85rem;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.share-customer-logo {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 16px;
}

.share-header h2 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.share-login-form .form-group {
    text-align: left;
    margin-bottom: 20px;
}

.alert {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.alert-error {
    background: rgba(239,68,68,0.1);
    color: #f87171;
    border: 1px solid rgba(239,68,68,0.3);
}

.share-question-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    padding: 32px;
    margin-bottom: 20px;
}

.share-question-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.share-answer-form textarea {
    font-size: 1rem;
    padding: 16px;
}

.share-nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}

.share-complete-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    padding: 48px 32px;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.complete-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-success);
    color: white;
    font-size: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 0 30px rgba(16,185,129,0.4);
}

.share-complete-card h1 {
    color: var(--text-primary);
    margin-bottom: 8px;
}

.share-complete-card p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.share-complete-card .brand-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-top: 16px;
}

/* Form divider */
.form-divider {
    border-top: 1px solid var(--border-color);
    margin: 32px 0 24px;
}

.form-help {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

/* Alert Messages */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-weight: 500;
}

.alert-success {
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(16,185,129,0.3);
    color: var(--accent-green);
}

.alert-error {
    background: rgba(239,68,68,0.15);
    border: 1px solid rgba(239,68,68,0.3);
    color: var(--accent-red);
}

.alert-info {
    background: rgba(0,212,255,0.15);
    border: 1px solid rgba(0,212,255,0.3);
    color: var(--accent-cyan);
}

/* Modal tweaks (moved from settings template) */
.modal-content { position: relative; }
.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: 1px solid #444;
    color: #cbd5e1;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
}
.modal-close:hover { border-color: #6b9cff; color: #ffffff; }
.modal-footer { display: flex; justify-content: flex-end; gap: 10px; padding: 24px; }
.switch-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.switch { position: relative; display: inline-block; width: 46px; height: 26px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background: #64748b; transition: .2s ease; border-radius: 26px;
}
.slider:before {
    position: absolute; content: ""; height: 18px; width: 18px; left: 4px; bottom: 4px;
    background: #0b1220; transition: .2s ease; border-radius: 50%; box-shadow: 0 2px 4px rgba(0,0,0,0.35);
}
.switch input:checked + .slider { background: #3b82f6; }
.switch input:checked + .slider:before { transform: translateX(20px); }

/* Actions menu button */
.icon-btn {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}
.icon-btn:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}
.action-menu-wrapper { position: relative; display: inline-block; }
.actions-menu {
    position: absolute;
    top: 52px;
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 8px;
    min-width: 160px;
    z-index: 20;
    display: none;
}
.actions-menu button {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}
.actions-menu button:hover {
    background: rgba(0,212,255,0.08);
}

.form-hint {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 6px;
}

/* Share Link Box */
.share-link-box {
    background: rgba(0,212,255,0.05);
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: var(--radius-lg);
    padding: 16px;
    margin: 24px 0;
}

.share-link-box label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.share-link-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.share-url {
    flex: 1;
    background: var(--bg-input);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.share-link-box small {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
}

.share-link-box small code {
    background: var(--bg-secondary);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: var(--font-mono);
    color: var(--accent-cyan);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    max-width: 500px;
    width: 90%;
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.modal-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 0;
    line-height: 1;
    transition: all 0.2s ease;
}

.modal-close:hover {
    color: var(--accent-red);
}

.modal-body {
    padding: 24px;
}

.modal-body p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.share-url-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    background: var(--bg-input);
    color: var(--text-primary);
}

.share-password-info {
    margin-top: 16px;
    padding: 16px;
    background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.3);
    border-radius: var(--radius-md);
}

.share-password-info label {
    display: block;
    font-size: 0.85rem;
    color: #fbbf24;
    margin-bottom: 6px;
}

.share-password {
    font-size: 1.1rem;
    font-family: var(--font-mono);
    background: var(--bg-primary);
    padding: 6px 12px;
    border-radius: 4px;
    color: var(--text-primary);
}

/* Response Cards */
.responses-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.response-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    display: flex;
    overflow: hidden;
}

.response-card.unanswered {
    background: rgba(245,158,11,0.03);
    border-left: 3px solid var(--accent-orange);
}

.response-number {
    background: var(--bg-secondary);
    padding: 24px 20px;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--accent-cyan);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-width: 60px;
    border-right: 1px solid var(--border-color);
}

.response-content {
    flex: 1;
    padding: 20px;
}

.response-section {
    margin-bottom: 16px;
}

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

.response-section label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.response-question {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
}

.response-goal {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.response-answer {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.7;
}

.response-notes {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    background: var(--bg-secondary);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent-purple);
}

.no-answer {
    color: var(--text-muted);
    font-style: italic;
}

/* Success Message */
.success-message {
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: var(--radius-md);
    padding: 16px;
    color: #34d399;
}

.success-message h4 {
    margin-bottom: 8px;
}

.success-message p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.success-message a {
    color: var(--accent-cyan);
}

/* Animations */
@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0,212,255,0.2); }
    50% { box-shadow: 0 0 40px rgba(0,212,255,0.4); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .mobile-header {
        display: flex;
    }
    
    .hamburger {
        display: block;
    }
    
    .sidebar-overlay {
        display: block;
    }
    
    .main-content {
        margin-left: 0;
        padding-top: 60px;
    }
    
    .container {
        padding: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .actions-uniform {
        flex-direction: column;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .customer-info {
        grid-template-columns: 1fr;
    }
    
    .interview-header {
        flex-direction: column;
        gap: 16px;
    }
    
    .interview-progress {
        text-align: left;
    }
    
    .progress-bar {
        width: 100%;
    }
    
    .customer-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
