/* Command Center Theme - Main Variables & Base */

:root {
    /* Dark Theme Colors */
    --cc-bg-primary: #030712;
    --cc-bg-secondary: #0f172a;
    --cc-bg-surface: #1e293b;
    --cc-bg-elevated: #334155;
    
    /* Text */
    --cc-text-primary: #f8fafc;
    --cc-text-secondary: #94a3b8;
    --cc-text-muted: #64748b;
    
    /* Accent Colors */
    --cc-accent-purple: #a855f7;
    --cc-accent-blue: #3b82f6;
    --cc-accent-green: #10b981;
    --cc-accent-orange: #f97316;
    --cc-accent-red: #ef4444;
    --cc-accent-yellow: #fbbf24;
    
    /* Gradients */
    --cc-gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --cc-gradient-accent: linear-gradient(135deg, #a855f7, #3b82f6);
    --cc-gradient-success: linear-gradient(135deg, #10b981, #06b6d4);
    
    /* Borders */
    --cc-border-subtle: rgba(255, 255, 255, 0.06);
    --cc-border-medium: rgba(255, 255, 255, 0.1);
    --cc-border-accent: rgba(168, 85, 247, 0.3);
    
    /* Shadows */
    --cc-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --cc-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --cc-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --cc-shadow-glow: 0 0 30px rgba(168, 85, 247, 0.3);
    
    /* Spacing */
    --cc-space-xs: 4px;
    --cc-space-sm: 8px;
    --cc-space-md: 16px;
    --cc-space-lg: 24px;
    --cc-space-xl: 32px;
    --cc-space-2xl: 48px;
    
    /* Typography */
    --cc-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --cc-font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Radius */
    --cc-radius-sm: 6px;
    --cc-radius-md: 10px;
    --cc-radius-lg: 16px;
    --cc-radius-xl: 24px;
    
    /* Transitions */
    --cc-transition-fast: 150ms ease;
    --cc-transition-normal: 250ms ease;
    --cc-transition-slow: 400ms ease;
}

/* ============================================= */
/* BASE RESET FOR COMMAND CENTER THEME */
/* ============================================= */

body.cc-theme,
body.command-center-theme {
    font-family: var(--cc-font-sans);
    background: var(--cc-bg-primary);
    color: var(--cc-text-primary);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body.cc-theme *,
body.cc-theme *::before,
body.cc-theme *::after,
body.command-center-theme *,
body.command-center-theme *::before,
body.command-center-theme *::after {
    box-sizing: border-box;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================= */
/* CC ICON OVERRIDES (for .sw-icon from icon-replacer) */
/* ============================================= */

/* Base CC icon styling */
.cc-theme .sw-icon,
.command-center-theme .sw-icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -0.125em;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

/* Icons inside tags - smaller, inline */
.cc-tag .sw-icon {
    width: 0.85em;
    height: 0.85em;
    margin-right: 0.25em;
}

/* Icons in buttons */
.cc-btn .sw-icon {
    width: 1.1em;
    height: 1.1em;
    margin-right: 0.5em;
}

/* Icons in nav links */
.cc-nav-link .sw-icon {
    width: 1em;
    height: 1em;
    margin-right: 0.4em;
}

/* ============================================= */
/* ANIMATED GRID BACKGROUND */
/* ============================================= */

.cc-bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: ccGridMove 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes ccGridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

/* Floating Orbs */
.cc-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
    animation: ccFloat 8s ease-in-out infinite;
}

.cc-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--cc-accent-purple), transparent);
    top: -100px;
    right: 10%;
}

.cc-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--cc-accent-blue), transparent);
    bottom: 10%;
    left: 5%;
    animation-delay: -4s;
}

.cc-orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--cc-accent-green), transparent);
    top: 40%;
    right: 5%;
    animation-delay: -2s;
}

@keyframes ccFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* ============================================= */
/* HEADER */
/* ============================================= */

.cc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--cc-space-xl);
    background: rgba(3, 7, 18, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--cc-border-accent);
    z-index: 1000;
}

.cc-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--cc-text-primary);
    text-decoration: none;
}

.cc-logo-mark {
    width: 38px;
    height: 38px;
    background: var(--cc-gradient-accent);
    border-radius: var(--cc-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--cc-shadow-glow);
    animation: ccLogoGlow 3s ease-in-out infinite;
}

@keyframes ccLogoGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(168, 85, 247, 0.4); }
    50% { box-shadow: 0 0 40px rgba(168, 85, 247, 0.7), 0 0 60px rgba(59, 130, 246, 0.3); }
}

.cc-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.cc-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.cc-brand-mark {
    width: 36px;
    height: 36px;
}

.cc-brand-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--cc-text-primary);
}

.cc-nav-links {
    display: flex;
    gap: 8px;
}

.cc-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--cc-radius-md);
    color: var(--cc-text-secondary);
    text-decoration: none;
    font-size: 1.25rem;
    transition: all var(--cc-transition-fast);
}

.cc-nav-link:hover {
    color: var(--cc-text-primary);
    background: rgba(255, 255, 255, 0.08);
}

.cc-nav-link.active {
    color: var(--cc-accent-purple);
    background: rgba(168, 85, 247, 0.15);
}

.cc-nav-auth {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cc-account-menu {
    position: relative;
}

.cc-account-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--cc-border-subtle);
    border-radius: var(--cc-radius-md);
    color: var(--cc-text-primary);
    cursor: pointer;
    font-size: 0.85rem;
}

.cc-avatar {
    width: 28px;
    height: 28px;
    background: var(--cc-gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.75rem;
}

.cc-account-email {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cc-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    min-width: 180px;
    background: var(--cc-bg-surface);
    border: 1px solid var(--cc-border-medium);
    border-radius: var(--cc-radius-md);
    box-shadow: var(--cc-shadow-lg);
    z-index: 1001;
    display: none;
}

.cc-account-btn[aria-expanded="true"] + .cc-dropdown {
    display: block;
}

.cc-dropdown-item {
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cc-text-secondary);
    transition: all var(--cc-transition-fast);
}

.cc-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--cc-text-primary);
}

.cc-dropdown-item:first-child {
    border-radius: var(--cc-radius-md) var(--cc-radius-md) 0 0;
}

.cc-dropdown-item:last-child {
    border-radius: 0 0 var(--cc-radius-md) var(--cc-radius-md);
}

/* ============================================= */
/* BUTTONS */
/* ============================================= */

.cc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--cc-radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--cc-transition-normal);
    white-space: nowrap;
}

.cc-btn-primary {
    background: var(--cc-gradient-accent);
    color: white;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.cc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
}

.cc-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--cc-text-primary);
    border: 1px solid var(--cc-border-medium);
}

.cc-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--cc-border-accent);
}

.cc-btn-ghost {
    background: transparent;
    color: var(--cc-text-secondary);
}

.cc-btn-ghost:hover {
    color: var(--cc-text-primary);
    background: rgba(255, 255, 255, 0.05);
}

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

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

.cc-btn-xs {
    padding: 4px 8px;
    font-size: 0.7rem;
}

.cc-btn-block {
    width: 100%;
    display: flex;
    justify-content: center;
}

.cc-btn-disabled,
.cc-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.cc-btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
}

.cc-btn-icon.cc-btn-xs {
    width: 24px;
    height: 24px;
}

/* OAuth Buttons */
.cc-btn-oauth {
    width: 100%;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--cc-border-medium);
    color: var(--cc-text-primary);
}

.cc-btn-oauth:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cc-oauth-section {
    margin-bottom: var(--cc-space-md);
}

.cc-auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: var(--cc-space-lg) 0;
}

.cc-auth-divider hr {
    flex: 1;
    border: none;
    border-top: 1px solid var(--cc-border-subtle);
}

.cc-auth-divider span {
    color: var(--cc-text-muted);
    font-size: 0.85rem;
}

.cc-input-error {
    color: var(--cc-accent-red);
    font-size: 0.8rem;
    margin-top: 4px;
}

.cc-violations {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--cc-radius-md);
    padding: var(--cc-space-md);
    margin: var(--cc-space-md) 0;
}

.cc-violations-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cc-accent-red);
    font-weight: 600;
    margin-bottom: 8px;
}

.cc-violations ul {
    margin: 0;
    padding-left: 20px;
    color: var(--cc-text-secondary);
    font-size: 0.9rem;
}

/* ============================================= */
/* MAIN LAYOUT */
/* ============================================= */

.cc-main {
    padding-top: 60px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

/* Full-height section with bottom controls */
.cc-section-full {
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
}

/* Content area (grows to fill space above controls) */
.cc-content-area {
    flex: 1;
    display: flex;
    padding: var(--cc-space-xl);
    overflow-y: auto;
}

/* Bottom controls dock */
.cc-controls-dock {
    background: var(--cc-bg-secondary);
    border-top: 1px solid var(--cc-border-accent);
    padding: var(--cc-space-lg) var(--cc-space-xl);
    position: sticky;
    bottom: 0;
    z-index: 100;
}

/* ============================================= */
/* CARDS & PANELS */
/* ============================================= */

.cc-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--cc-border-subtle);
    border-radius: var(--cc-radius-lg);
    padding: var(--cc-space-lg);
    transition: all var(--cc-transition-normal);
}

.cc-card:hover {
    border-color: var(--cc-border-medium);
    background: rgba(255, 255, 255, 0.05);
}

.cc-card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid var(--cc-border-accent);
    border-radius: var(--cc-radius-xl);
    box-shadow: var(--cc-shadow-lg);
}

.cc-panel {
    background: var(--cc-bg-surface);
    border: 1px solid var(--cc-border-subtle);
    border-radius: var(--cc-radius-lg);
}

/* ============================================= */
/* FORM INPUTS */
/* ============================================= */

.cc-input,
.cc-select {
    width: 100%;
    padding: 12px 16px;
    background: var(--cc-bg-secondary);
    border: 1px solid var(--cc-border-medium);
    border-radius: var(--cc-radius-md);
    color: var(--cc-text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all var(--cc-transition-fast);
}

.cc-input:focus,
.cc-select:focus {
    outline: none;
    border-color: var(--cc-accent-purple);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.cc-input::placeholder {
    color: var(--cc-text-muted);
}

.cc-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cc-text-secondary);
    margin-bottom: 6px;
}

/* ============================================= */
/* SLIDERS (Range Inputs) */
/* ============================================= */

.cc-slider-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cc-slider-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cc-text-secondary);
}

.cc-slider-value {
    font-family: var(--cc-font-mono);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cc-accent-purple);
    padding: 4px 10px;
    background: rgba(168, 85, 247, 0.15);
    border-radius: var(--cc-radius-sm);
}

.cc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: var(--cc-bg-elevated);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.cc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--cc-gradient-accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
    transition: transform var(--cc-transition-fast);
}

.cc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.cc-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--cc-gradient-accent);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.cc-slider-range {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--cc-text-muted);
    margin-top: 4px;
}

/* ============================================= */
/* NOTIFICATIONS */
/* ============================================= */

.cc-toast {
    position: fixed;
    bottom: 100px;
    right: 24px;
    padding: 14px 24px;
    border-radius: var(--cc-radius-md);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    animation: ccSlideIn 0.3s ease;
    box-shadow: var(--cc-shadow-lg);
}

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

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

.cc-toast.info {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--cc-accent-blue);
}

@keyframes ccSlideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ============================================= */
/* RESPONSIVE */
/* ============================================= */

@media (max-width: 1024px) {
    .cc-header {
        padding: 0 var(--cc-space-md);
    }
    
    .cc-nav {
        display: none;
    }
    
    .cc-content-area {
        padding: var(--cc-space-md);
    }
}

@media (max-width: 768px) {
    .cc-controls-dock {
        padding: var(--cc-space-md);
    }
}
/* ============================================= */
/* MODALS */
/* ============================================= */

.cc-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: var(--cc-space-lg);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.cc-modal.active,
.cc-modal.visible,
.cc-modal[aria-hidden="false"] {
    display: flex;
}

.cc-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.cc-modal-content {
    position: relative;
    background: var(--cc-bg-surface);
    border: 1px solid var(--cc-border-medium);
    border-radius: var(--cc-radius-lg);
    padding: var(--cc-space-xl);
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--cc-shadow-lg), var(--cc-shadow-glow);
    animation: ccModalIn 0.25s ease;
}

/* Auth modal - scrollable at high zoom */
#auth-modal .cc-modal-content,
#register-modal .cc-modal-content {
    max-height: 85vh;
    overflow-y: auto;
}

@keyframes ccModalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.cc-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--cc-space-lg);
}

.cc-modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cc-text-primary);
    margin: 0;
}

.cc-modal-close {
    background: transparent;
    border: none;
    color: var(--cc-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color var(--cc-transition-fast);
}

.cc-modal-close:hover {
    color: var(--cc-text-primary);
}

.cc-modal-body {
    margin-bottom: var(--cc-space-lg);
}

.cc-modal-footer {
    display: flex;
    gap: var(--cc-space-md);
    justify-content: flex-end;
}

/* ============================================= */
/* WAVE DETAIL MODAL */
/* ============================================= */

.wave-modal-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    padding: var(--cc-space-lg);
}

.wave-modal {
    background: var(--cc-bg-surface);
    border: 1px solid var(--cc-border-medium);
    border-radius: var(--cc-radius-lg);
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--cc-shadow-lg), var(--cc-shadow-glow);
    animation: ccModalIn 0.25s ease;
}

.wave-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--cc-space-lg);
    border-bottom: 1px solid var(--cc-border-subtle);
}

.wave-modal-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cc-text-primary);
    margin: 0;
}

.wave-modal-close {
    background: transparent;
    border: none;
    color: var(--cc-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color var(--cc-transition-fast);
}

.wave-modal-close:hover {
    color: var(--cc-text-primary);
}

.wave-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: var(--cc-space-lg);
}

.wave-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--cc-space-lg);
    border-top: 1px solid var(--cc-border-subtle);
    gap: var(--cc-space-md);
}

.wave-modal-footer .footer-info {
    font-size: 0.875rem;
    color: var(--cc-text-muted);
}

.wave-modal-footer .footer-actions {
    display: flex;
    gap: var(--cc-space-sm);
}

/* Wave Modal App Table */
.wave-app-table {
    width: 100%;
    border-collapse: collapse;
}

.wave-app-table th,
.wave-app-table td {
    padding: var(--cc-space-sm) var(--cc-space-md);
    text-align: left;
    border-bottom: 1px solid var(--cc-border-subtle);
}

.wave-app-table th {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--cc-text-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.wave-app-table td {
    font-size: 0.875rem;
    color: var(--cc-text-secondary);
}

.wave-app-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.wave-app-table select {
    background: var(--cc-bg-secondary);
    border: 1px solid var(--cc-border-medium);
    color: var(--cc-text-primary);
    padding: 4px 8px;
    border-radius: var(--cc-radius-sm);
    font-size: 0.875rem;
}

.wave-app-table select:focus {
    outline: none;
    border-color: var(--cc-accent-purple);
}

/* Project Modal Specific */
.cc-modal.project-modal .cc-modal-content {
    max-width: 520px;
}

.cc-project-form-group {
    margin-bottom: var(--cc-space-lg);
}

.cc-project-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--cc-text-secondary);
    margin-bottom: var(--cc-space-sm);
}

.cc-project-form-group input,
.cc-project-form-group textarea {
    width: 100%;
    background: var(--cc-bg-secondary);
    border: 1px solid var(--cc-border-medium);
    border-radius: var(--cc-radius-md);
    padding: var(--cc-space-md);
    color: var(--cc-text-primary);
    font-size: 0.95rem;
}

.cc-project-form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.cc-project-form-group input:focus,
.cc-project-form-group textarea:focus {
    outline: none;
    border-color: var(--cc-accent-purple);
}