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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000000;
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    overflow-x: hidden;
}

/* Prevent horizontal overflow globally */
html {
    overflow-x: hidden;
    max-width: 100%;
}

/* Main Container */
.prototype-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: calc(100vh - 24px);
}

/* Safari Browser Window */
.browser-window {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* Browser Chrome */
.browser-chrome {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border-bottom: 2px solid #000000;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 50px;
}

/* Traffic Lights */
.traffic-lights {
    display: flex;
    gap: 8px;
    align-items: center;
}

.light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.light.red {
    background: #ff5f57;
    border: 2px solid #e0443e;
}

.light.yellow {
    background: #ffbd2e;
    border: 2px solid #dfa123;
}

.light.green {
    background: #28ca42;
    border: 2px solid #1fa935;
}


/* Content Area */
.content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    overflow: hidden;
    min-height: 0;
}


/* Navigation Container */
.navigation-container {
    background: #f8f9fa;
    border-bottom: 2px solid #e0e0e0;
}

.navigation-container.has-sidebar {
    flex: 1;
    display: flex;
    background: transparent;
    border-bottom: none;
    overflow: hidden;
    min-height: 0;
}

.navigation-container:has(.nav-horizontal) {
    flex: 1;
    display: flex;
    background: transparent;
    border-bottom: none;
    overflow: hidden;
    min-height: 0;
}

/* Navigation Styles */

/* Thin Nav Style (Nav 1) - Vertical Sidebar */
.nav-thin {
    display: flex;
    flex: 1;
    width: 100%;
    background: #ffffff;
}

.nav-thin .nav-sidebar {
    width: 72px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    border-right: 2px solid #e5e7eb;
    flex-shrink: 0;
}

.nav-thin .nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    padding: 8px;
}

.nav-thin .logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-thin .logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.nav-thin .godaddy-logo {
    width: 36px;
    height: 36px;
    fill: #1f2937;
}

.nav-thin .nav-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    padding: 0 8px;
    flex: 1;
}

.nav-thin .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 8px;
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    font-size: 11px;
    border-radius: 8px;
    transition: all 0.2s;
    width: 100%;
}

.nav-thin .nav-item:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.nav-thin .nav-item.active {
    background: #667eea;
    color: #ffffff;
}

.nav-thin .nav-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.nav-thin .nav-label {
    font-size: 11px;
    text-align: center;
    line-height: 1.2;
}

.nav-thin .nav-item-avatar {
    margin-top: 8px;
}

.nav-thin .nav-avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.nav-thin .nav-item.active .nav-avatar-circle {
    background: #ffffff;
    color: #667eea;
}

.nav-thin .nav-main-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.nav-thin .utility-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 12px 24px;
    background: #ffffff;
}

.nav-thin .utility-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-thin .utility-icon-btn:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.nav-thin .utility-icon-btn.active {
    background: #eff6ff;
    color: #3b82f6;
}

.nav-thin .utility-icon-btn.ask-airo-toggle {
    position: relative;
}

.nav-thin .utility-icon-btn.ask-airo-toggle.active::after {
    content: '';
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.nav-thin .utility-icon-btn i {
    width: 20px;
    height: 20px;
}

.nav-thin .business-nav {
    width: 240px;
    background: #fafafa;
    border-right: 2px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    padding: 16px 0 0 0;
}

.nav-thin .business-nav-header {
    padding: 8px 24px 20px 24px;
    border-bottom: 2px solid #e5e7eb;
}

.nav-thin .business-nav-title {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.nav-thin .business-nav-name {
    font-size: 17px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.3;
}

.nav-thin .business-nav-links {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-thin .business-nav-link {
    display: block;
    padding: 14px 16px;
    color: #4b5563;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-thin .business-nav-link:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.nav-thin .business-nav-link.active {
    background: #ede9fe;
    color: #7c3aed;
    font-weight: 600;
}

.nav-thin .content-wrapper {
    flex: 1;
    overflow: auto;
    background: #ffffff;
}

/* Horizontal Nav Style (Nav 2) */
.nav-horizontal {
    display: flex;
    flex: 1;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    position: relative;
}

.nav-horizontal .nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: #ffffff;
    border-bottom: 2px solid #e5e7eb;
    gap: 24px;
    position: relative;
}

.nav-horizontal .nav-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-horizontal .nav-logo-horizontal {
    display: flex;
    align-items: center;
}

.nav-horizontal .nav-logo-horizontal .godaddy-logo {
    width: 32px;
    height: 32px;
    fill: #1f2937;
}

.nav-horizontal .nav-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
}

.nav-horizontal .nav-dropdown-btn:hover {
    background: #f3f4f6;
}

.nav-horizontal .nav-dropdown-btn > i {
    width: 16px;
    height: 16px;
    margin-left: auto;
}

.nav-horizontal .dropdown-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    min-width: 0;
}

.nav-horizontal .dropdown-label {
    font-size: 11px;
    font-weight: 500;
    color: #9ca3af;
    text-transform: capitalize;
    line-height: 1;
}

.nav-horizontal .dropdown-name {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.3;
    margin-top: 2px;
}

.nav-horizontal .nav-center {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

.nav-horizontal .search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 16px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 24px;
    transition: all 0.2s;
}

.nav-horizontal .search-bar:focus-within {
    background: #ffffff;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.nav-horizontal .search-bar i {
    width: 20px;
    height: 20px;
    color: #9ca3af;
}

.nav-horizontal .search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #1f2937;
    outline: none;
}

.nav-horizontal .search-bar input::placeholder {
    color: #9ca3af;
}

.nav-horizontal .nav-right-horizontal {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-horizontal .nav-icon-btn-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-horizontal .nav-icon-btn-horizontal:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.nav-horizontal .nav-icon-btn-horizontal i {
    width: 22px;
    height: 22px;
    stroke-width: 2;
}

.nav-horizontal .nav-horizontal-main {
    flex: 1;
    display: flex;
    overflow: hidden;
    min-height: 0;
}

.nav-horizontal .project-sidebar {
    width: 280px;
    background: #fafafa;
    border-right: 2px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

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

.nav-horizontal .project-sidebar-link {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s;
}

.nav-horizontal .project-sidebar-link:hover {
    background: #f0f0f0;
    color: #1f2937;
}

.nav-horizontal .project-sidebar-link.active {
    background: #e8e5f3;
    color: #7c3aed;
}

.nav-horizontal .content-wrapper {
    flex: 1;
    overflow: auto;
    background: #ffffff;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 64px;
    left: 24px;
    width: calc(33.333% - 48px);
    max-width: 480px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.mega-menu.open {
    max-height: 80vh;
    opacity: 1;
    overflow-y: auto;
}

.mega-menu-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mega-menu-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.mega-menu-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.view-all-link {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.view-all-link:hover {
    text-decoration: underline;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.project-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.project-card:hover {
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.project-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: #f9fafb;
    border-radius: 8px;
    flex-shrink: 0;
}

.project-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.project-info p {
    margin: 4px 0 0 0;
    font-size: 14px;
    color: #6b7280;
}

.project-info .project-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 6px 0 0 0;
    font-size: 13px;
    color: #6b7280;
}

.project-info .project-meta i {
    width: 14px;
    height: 14px;
    color: #9ca3af;
}

.domain-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.domain-card:hover {
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.domain-card i {
    width: 24px;
    height: 24px;
    color: #6b7280;
}

.domain-card span {
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
}

.product-icons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.product-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.product-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.product-icon-item:hover .product-icon-circle {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-icon-circle i {
    width: 28px;
    height: 28px;
    color: #1f2937;
    stroke-width: 2;
}

.product-icon-item span {
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    text-align: center;
}

/* Dashboard Layout Styles */
.dashboard-layout {
    display: flex;
    gap: 32px;
    padding: 48px 200px;
    background: #ffffff;
    min-height: 100%;
    align-items: flex-start;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    box-sizing: border-box;
    transition: gap 0.3s ease;
}

/* When sidebar is not visible, remove the gap */
.dashboard-layout:not(:has(.sidebar-visible)) {
    gap: 0;
}

.content-wrapper:has(.dashboard-layout) {
    background: #ffffff;
    overflow-x: hidden;
}

.dashboard-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden;
    transition: max-width 0.3s ease;
}

.dashboard-sidebar {
    width: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    gap: 20px;
    position: -webkit-sticky;
    position: sticky;
    top: 16px;
    align-self: flex-start;
    max-height: calc(100vh - 32px);
    z-index: 10;
    /* Hidden by default in Concept D, shown via sidebar-visible class */
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, width 0.3s ease;
}

.dashboard-sidebar.sidebar-visible {
    opacity: 1;
    visibility: visible;
    width: 400px;
    transform: translateX(0);
}

/* Welcome Section */
.dashboard-welcome h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin: 0 0 16px 0;
}

.ai-summary {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 0;
}

.ai-summary i {
    width: 20px;
    height: 20px;
    color: #a855f7;
    flex-shrink: 0;
    margin-top: 2px;
}

.ai-summary p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    font-style: italic;
}

.ai-summary .highlight-text {
    background-image: linear-gradient(transparent 20%, rgba(109, 40, 217, 0.25) 20%, rgba(109, 40, 217, 0.25) 80%, transparent 80%);
    background-size: 100% 1.8em;
    background-repeat: repeat;
    background-position: 0 0;
    display: inline;
    padding: 0;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* Today's Focus - Redesigned */
.todays-focus {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    border: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 6px 0;
}

.section-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

.focus-count {
    background: #f3f4f6;
    color: #374151;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid #e5e7eb;
}

.focus-tasks {
    display: grid;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.focus-task {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e5e7eb;
}

.focus-task:hover {
    transform: translateY(-4px);
    border-color: #d1d5db;
}

.focus-task.featured {
    display: flex;
    gap: 0;
    padding: 0;
    background: #ffffff;
}

.task-image {
    width: 320px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.task-content {
    padding: 32px;
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.focus-task.featured .task-content {
    padding: 36px 40px;
}

.focus-task:not(.featured) .task-content {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    gap: 8px 16px;
    align-items: start;
    padding: 24px;
}

.focus-task:not(.featured) .business-label {
    grid-column: 1 / -1;
}

.focus-task:not(.featured) h3 {
    grid-column: 1;
    grid-row: 2;
}

.focus-task:not(.featured) p {
    grid-column: 1;
    grid-row: 3;
}

.focus-task:not(.featured) .task-button-secondary {
    grid-column: 2;
    grid-row: 2 / 4;
    align-self: center;
}

.time-badge {
    position: absolute;
    top: 36px;
    right: 40px;
    background: #1f2937;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.business-label {
    color: #4b5563;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    padding: 4px 12px;
    background: #f3f4f6;
    border-radius: 6px;
    width: fit-content;
    border: 2px solid #e5e7eb;
}

.business-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #6b7280;
    border-radius: 50%;
}

.task-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.focus-task:not(.featured) .task-content h3 {
    font-size: 17px;
    margin: 0;
    font-weight: 600;
}

.task-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 24px 0;
}

.focus-task:not(.featured) .task-content p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: #9ca3af;
}

.task-button {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.task-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.task-button:hover::before {
    left: 100%;
}

.task-button:hover {
    transform: translateY(-2px);
}

.task-button:active {
    transform: translateY(0);
}

.task-button-secondary {
    background: #ffffff;
    color: #374151;
    border: 2px solid #e5e7eb;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.task-button-secondary:hover {
    border-color: #111827;
    background: #111827;
    color: #ffffff;
    transform: translateY(-1px);
}

.task-tags {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.tag {
    background: #f3f4f6;
    color: #4b5563;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid #d1d5db;
    transition: all 0.2s;
}

.tag:hover {
    background: #e5e7eb;
    color: #1f2937;
    border-color: #9ca3af;
}

/* Sidebar Styles */
.sidebar-tabs {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    padding: 4px;
    flex-shrink: 0;
}

.sidebar-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
}

.sidebar-tab:hover {
    color: #1f2937;
}

.sidebar-tab.active {
    background: #f3f4f6;
    color: #1f2937;
}

.sidebar-tab i {
    width: 16px;
    height: 16px;
}

.sidebar-section {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    flex-shrink: 0;
}

.sidebar-section h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 16px 0;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.activity-item {
    display: flex;
    gap: 12px;
    padding-left: 16px;
    border-left: 3px solid #d1d5db;
    position: relative;
}

.activity-item.success {
    border-left-color: #10b981;
}

.activity-item i {
    width: 20px;
    height: 20px;
    color: #6b7280;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Spin animation for refresh-cw icon */
[data-lucide="refresh-cw"],
.lucide-refresh-cw,
svg.lucide-refresh-cw {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.activity-item.success i {
    color: #10b981;
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.activity-subtitle {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 8px 0;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 4px;
}

.progress-fill {
    height: 100%;
    background: #a78bfa;
    transition: width 0.3s ease;
}

.activity-item.success .progress-fill {
    background: #10b981;
}

.progress-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.performance-card {
    padding: 16px 0;
}

.performance-card:not(:last-child) {
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 16px;
}

.performance-card h4 {
    color: #667eea;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 12px 0;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 11px;
    color: #6b7280;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.metric-value {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 6px;
}

.metric-value.up {
    color: #10b981;
}

.metric-value i {
    width: 20px;
    height: 20px;
}

/* Tab Content */
.tab-content {
    display: none;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    min-height: 0;
}

.tab-content.active {
    display: flex;
}

/* Quick View tab - fixed height for scrolling */
.tab-content[data-content="quickview"] {
    height: calc(100vh - 140px);
    max-height: calc(100vh - 140px);
}

/* Airo Chat Styles */
.airo-chat {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 700px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.chat-messages {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 0;
}

.chat-message {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.chat-message.user-message {
    flex-direction: row-reverse;
}

.airo-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff !important;
}

.airo-avatar i {
    width: 20px;
    height: 20px;
    color: #ffffff !important;
}

.airo-avatar svg {
    width: 20px !important;
    height: 20px !important;
    stroke: currentColor !important;
}

.airo-avatar svg * {
    stroke: currentColor !important;
}

.message-bubble {
    background: #f3f4f6;
    padding: 16px 20px;
    border-radius: 16px;
    font-size: 15px;
    line-height: 1.6;
    color: #1f2937;
    max-width: 85%;
}

.airo-message .message-bubble {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    border-radius: 16px 16px 16px 4px;
}

.user-message .message-bubble {
    background: #ddd;
    color: #000000;
    border-radius: 16px 16px 4px 16px;
}

.chat-input-container {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    border-top: 2px solid #e5e7eb;
    background: #ffffff;
    flex-shrink: 0;
}

.chat-input {
    flex: 1;
    border: 2px solid #e5e7eb;
    border-radius: 24px;
    padding: 12px 20px;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    color: #1f2937;
    outline: none;
    transition: all 0.2s;
}

.chat-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.chat-input::placeholder {
    color: #9ca3af;
}

.chat-send-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    color: #ffffff !important;
}

.chat-send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.chat-send-btn i {
    width: 20px;
    height: 20px;
    color: #ffffff !important;
}

.chat-send-btn svg {
    stroke: currentColor !important;
}

.chat-send-btn svg * {
    stroke: currentColor !important;
}

/* Hamburger Nav Style */
.nav-hamburger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    height: 64px;
}

.hamburger-btn {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    color: #333;
    transition: all 0.2s;
}

.hamburger-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.nav-hamburger .brand {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
}

.mobile-menu {
    display: none;
    background: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 16px 0;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu .nav-item {
    display: block;
    padding: 12px 24px;
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s;
}

.mobile-menu .nav-item:hover {
    background: #f8f9fa;
    color: #667eea;
}

.mobile-menu .nav-item.active {
    background: #f0f4ff;
    color: #667eea;
    font-weight: 600;
}

/* Tabs Nav Style */
.nav-tabs {
    padding: 16px 24px 0;
}

.tabs-container {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid #e0e0e0;
}

.nav-tabs .nav-item {
    padding: 12px 24px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    background: transparent;
    border: none;
    border-radius: 8px 8px 0 0;
    transition: all 0.2s;
    cursor: pointer;
}

.nav-tabs .nav-item:hover {
    background: #f8f9fa;
    color: #333;
}

.nav-tabs .nav-item.active {
    background: #ffffff;
    color: #667eea;
    border-bottom: 2px solid #667eea;
    margin-bottom: -2px;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 40px 24px;
    overflow: auto;
    max-width: 100%;
    box-sizing: border-box;
}

/* Hide main content when navigation has sidebar or is horizontal nav */
.has-sidebar ~ .main-content,
.navigation-container:has(.nav-horizontal) ~ .main-content {
    display: none;
}

.content-section h1 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 16px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 24px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.content-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s;
}

.content-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.content-card h3 {
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 8px;
}

.content-card p {
    font-size: 14px;
    color: #718096;
}

/* Control Bar */
.control-bar {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border-radius: 12px;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    flex-wrap: nowrap;
}

.control-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.control-label {
    color: #a0aec0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.control-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
}

.control-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #e2e8f0;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.control-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.control-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

/* Persona Dropdown */
.persona-dropdown {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #e2e8f0;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    min-width: 220px;
}

.persona-dropdown:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.persona-dropdown:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.persona-dropdown option {
    background: #2d3748;
    color: #e2e8f0;
    padding: 10px;
}

/* Project Manager Layout (Concept B) */
.project-manager-layout {
    padding: 48px 64px;
    background: #ffffff;
    min-height: 100%;
}

.pm-main h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 32px 0;
}

.jump-back-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 20px 0;
}

.jump-back-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 48px;
}

.jump-back-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.jump-back-card:hover {
    border-color: #9ca3af;
    transform: translateY(-2px);
}

.jump-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    border-radius: 12px;
    flex-shrink: 0;
}

.jump-icon i {
    width: 28px;
    height: 28px;
    color: #6b7280;
}

.jump-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.jump-info p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.projects-section {
    display: flex;
    gap: 24px;
}

.projects-section.no-sidebar .pm-content {
    width: 100%;
}

.pm-sidebar {
    width: 240px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pm-nav-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.pm-nav-btn:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.pm-nav-btn.active {
    background: #e5e7eb;
    color: #1f2937;
}

.pm-nav-btn i {
    width: 20px;
    height: 20px;
}

.pm-nav-btn span:first-of-type {
    flex: 1;
}

.pm-nav-btn .badge {
    background: #e5e7eb;
    color: #4b5563;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.pm-content {
    flex: 1;
}

.pm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.pm-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.new-project-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.2s;
}

.new-project-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.new-project-btn i {
    width: 18px;
    height: 18px;
}

.project-group {
    margin-bottom: 32px;
}

.project-group h3 {
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    margin: 0 0 16px 0;
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.project-item:hover {
    border-color: #9ca3af;
    transform: translateY(-2px);
}

.project-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    border-radius: 10px;
    flex-shrink: 0;
}

.project-icon i {
    width: 24px;
    height: 24px;
    color: #6b7280;
}

.project-details {
    flex: 1;
}

.project-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.project-time {
    font-size: 14px;
    color: #9ca3af;
    margin-right: 12px;
}

.project-menu {
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #9ca3af;
    border-radius: 6px;
    transition: all 0.2s;
}

.project-menu:hover {
    background: #f3f4f6;
    color: #4b5563;
}

.project-menu i {
    width: 20px;
    height: 20px;
}

.content-wrapper:has(.project-manager-layout) {
    background: #ffffff;
}

/* White background for Concept B with Nav 1 */
.nav-thin + .nav-main-area .project-manager-layout {
    background: #ffffff;
}

/* Airo Chat Interface (Concept C) */
.airo-chat-interface {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 48px;
    background: #ffffff;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.airo-header {
    text-align: center;
    margin-bottom: 32px;
    max-width: 800px;
}

.airo-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.airo-icon i {
    width: 80px;
    height: 80px;
    color: #8b5cf6 !important;
    stroke: #8b5cf6 !important;
    stroke-width: 1.5;
}

.airo-icon i svg {
    stroke: #8b5cf6 !important;
    fill: none !important;
    color: #8b5cf6 !important;
}

.airo-icon svg {
    stroke: #8b5cf6 !important;
    fill: none !important;
    color: #8b5cf6 !important;
}

.airo-icon svg path {
    stroke: #8b5cf6 !important;
    fill: none !important;
}

.airo-icon i[data-lucide="sparkles"] {
    color: #8b5cf6 !important;
    stroke: #8b5cf6 !important;
}

.airo-icon i[data-lucide="sparkles"] svg,
.airo-icon i[data-lucide="sparkles"] svg path {
    stroke: #8b5cf6 !important;
    fill: none !important;
    color: #8b5cf6 !important;
}

.airo-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 16px 0;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.airo-description {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    max-width: 1000px;
    width: 100%;
    margin-bottom: 32px;
}

.quick-action-card {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-action-card:hover {
    border-color: #8b5cf6;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.1);
    transform: translateY(-1px);
}

.action-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.action-content h3 {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.action-content p {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
    line-height: 1.4;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.airo-input-container {
    width: 100%;
    max-width: 1000px;
}

.airo-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    margin-bottom: 12px;
}

.airo-input-wrapper:focus-within {
    border-color: #8b5cf6;
    background: #ffffff;
}

.input-icon {
    width: 20px;
    height: 20px;
    color: #9ca3af;
    flex-shrink: 0;
}

.airo-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #1f2937;
    outline: none;
}

.airo-input::placeholder {
    color: #9ca3af;
}

.airo-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    color: #ffffff !important;
}

.airo-send-btn:hover {
    background: #8b5cf6;
}

.airo-send-btn i {
    width: 20px;
    height: 20px;
    color: #ffffff !important;
}

.airo-send-btn svg {

    stroke: currentColor !important;
}

.airo-send-btn svg * {
   
    stroke: currentColor !important;
}

.airo-disclaimer {
    text-align: center;
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
}

.content-wrapper:has(.airo-chat-interface) {
    background: #ffffff;
}

/* Domains View Styles */
.domains-view {
    padding: 48px 64px;
    background: #ffffff;
    min-height: 100%;
}

.domains-header {
    margin-bottom: 32px;
}

.domains-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.domains-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

.domains-table-container {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.domains-table {
    width: 100%;
    border-collapse: collapse;
}

.domains-table thead {
    background: #f9fafb;
    border-bottom: 2px solid #e5e7eb;
}

.domains-table th {
    padding: 16px 24px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.domains-table tbody tr {
    border-bottom: 2px solid #e5e7eb;
    transition: background-color 0.2s;
}

.domains-table tbody tr:hover {
    background: #f9fafb;
}

.domains-table tbody tr:last-child {
    border-bottom: none;
}

.domains-table td {
    padding: 20px 24px;
    font-size: 15px;
    color: #1f2937;
}

.domain-name-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.domain-icon {
    width: 20px;
    height: 20px;
    color: #667eea;
    flex-shrink: 0;
}

.domain-name {
    font-weight: 600;
    color: #1f2937;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.status-badge.status-active {
    background: #d1fae5;
    color: #065f46;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: #667eea;
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(20px);
}

.action-menu-container {
    position: relative;
}

.action-btn {
    background: transparent;
    border: none;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.action-btn i {
    width: 20px;
    height: 20px;
}

.action-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 4px);
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    min-width: 200px;
    padding: 6px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
}

.action-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.action-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
    color: #1f2937;
    transition: all 0.15s;
}

.action-dropdown-item:hover {
    background: #f3f4f6;
}

.action-dropdown-item i {
    width: 16px;
    height: 16px;
    color: #6b7280;
}

.action-dropdown-item.danger {
    color: #dc2626;
}

.action-dropdown-item.danger:hover {
    background: #fee2e2;
}

.action-dropdown-item.danger i {
    color: #dc2626;
}

.action-dropdown-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 6px 0;
}

.content-wrapper:has(.domains-view) {
    background: #ffffff;
}

/* Emails View Styles */
.emails-view {
    padding: 48px 64px;
    background: #ffffff;
    min-height: 100%;
}

.emails-header {
    margin-bottom: 32px;
}

.emails-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.emails-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

.emails-table-container {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.emails-table {
    width: 100%;
    border-collapse: collapse;
}

.emails-table thead {
    background: #f9fafb;
    border-bottom: 2px solid #e5e7eb;
}

.emails-table th {
    padding: 16px 24px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.emails-table tbody tr {
    border-bottom: 2px solid #e5e7eb;
    transition: background-color 0.2s;
}

.emails-table tbody tr:hover {
    background: #f9fafb;
}

.emails-table tbody tr:last-child {
    border-bottom: none;
}

.emails-table td {
    padding: 20px 24px;
    font-size: 15px;
    color: #1f2937;
}

.email-address-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.email-icon {
    width: 20px;
    height: 20px;
    color: #3b82f6;
}

.email-address {
    font-weight: 600;
    color: #1f2937;
}

.email-domain {
    color: #6b7280;
    font-size: 14px;
}

.storage-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.storage-text {
    font-size: 14px;
    color: #6b7280;
}

.storage-bar {
    width: 100%;
    max-width: 150px;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.storage-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.type-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #eff6ff;
    color: #3b82f6;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
}

.content-wrapper:has(.emails-view) {
    background: #ffffff;
}

/* Websites View Styles */
.websites-view {
    padding: 48px 64px;
    background: #ffffff;
    min-height: 100%;
}

.websites-header {
    margin-bottom: 32px;
}

.websites-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.websites-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

.websites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.website-tile {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s;
    cursor: pointer;
}

.website-tile:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.website-tile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.website-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.website-icon i {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.website-menu-btn {
    background: transparent;
    border: none;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.website-menu-btn:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.website-menu-btn i {
    width: 20px;
    height: 20px;
}

.website-tile-content {
    flex: 1;
    margin-bottom: 20px;
}

.website-name {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.website-builder {
    font-size: 14px;
    color: #667eea;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.website-domain {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.website-tile-footer {
    display: flex;
    gap: 8px;
    padding-top: 16px;
    border-top: 2px solid #e5e7eb;
}

.website-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.2s;
}

.website-action-btn:hover {
    border-color: #667eea;
    color: #667eea;
    background: #f9fafb;
}

.website-action-btn i {
    width: 16px;
    height: 16px;
}

.content-wrapper:has(.websites-view) {
    background: #ffffff;
}

/* Business Dashboard Styles */
.business-dashboard {
    padding: 48px 64px;
    background: #ffffff;
    min-height: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Business Dashboard Layout - uses different padding than home dashboard */
.dashboard-layout:has(.business-dashboard-header) {
    padding: 48px 64px;
}

.business-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.business-dashboard-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.business-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

/* Key Insight Section */
.key-insight-section {
    background: linear-gradient(135deg, #f3f0ff 0%, #e9d5ff 100%);
    border: 2px solid #a78bfa;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    max-width: 100%;
    box-sizing: border-box;
}

.insight-icon {
    width: 56px;
    height: 56px;
    background: #a78bfa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.insight-icon i {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.insight-content {
    flex: 1;
}

.insight-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.insight-content p {
    font-size: 15px;
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

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

.action-button-primary,
.action-button-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.action-button-primary {
    background: #667eea;
    color: #ffffff;
}

.action-button-primary:hover {
    background: #5568d3;
}

.action-button-secondary {
    background: #ffffff;
    color: #1f2937;
    border: 2px solid #e5e7eb;
}

.action-button-secondary:hover {
    border-color: #667eea;
    color: #667eea;
}

.action-button-primary i,
.action-button-secondary i {
    width: 16px;
    height: 16px;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.metrics-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.metric-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.2s;
}

.metric-card:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.metric-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-trend {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
}

.metric-trend.up {
    background: #d1fae5;
    color: #065f46;
}

.metric-trend i {
    width: 14px;
    height: 14px;
}

.metric-value-large {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.metric-change {
    font-size: 13px;
    color: #6b7280;
}

/* Dashboard Section */
.dashboard-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dashboard-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.section-subtitle-inline {
    font-size: 14px;
    color: #6b7280;
}

.time-filter {
    display: flex;
    gap: 8px;
}

.filter-btn {
    padding: 8px 16px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.filter-btn.active {
    background: #667eea;
    border-color: #667eea;
    color: #ffffff;
}

/* Performance Grid */
.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.performance-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
}

.performance-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 20px 0;
}

.chart-placeholder {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    margin-bottom: 12px;
}

.line-chart {
    width: 100%;
    height: 100%;
}

.chart-legend {
    font-size: 13px;
    color: #6b7280;
    text-align: center;
}

/* Service Breakdown */
.service-breakdown {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.service-count {
    font-size: 13px;
    color: #6b7280;
}

.service-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.service-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

.service-value {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    text-align: right;
}

/* Outcomes Grid */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.outcome-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 16px;
    transition: all 0.2s;
}

.outcome-card:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.outcome-card.positive {
    border-left: 4px solid #10b981;
}

.outcome-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.outcome-card.positive .outcome-icon {
    background: #d1fae5;
    color: #10b981;
}

.outcome-icon i {
    width: 24px;
    height: 24px;
}

.outcome-content {
    flex: 1;
}

.outcome-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.outcome-content p {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 8px 0;
}

.outcome-impact {
    font-size: 13px;
    font-weight: 600;
    color: #10b981;
}

/* Actions Grid */
.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.quick-action-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.quick-action-card:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.quick-action-card i {
    width: 32px;
    height: 32px;
    color: #667eea;
}

.quick-action-card span {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.content-wrapper:has(.business-dashboard) {
    background: #ffffff;
    overflow-x: hidden;
}

/* Recommendations List */
.recommendations-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recommendation-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.2s;
    position: relative;
}

.recommendation-card:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.recommendation-card.high-impact {
    border-left-color: #10b981;
    border-left-width: 4px;
}

.recommendation-card.medium-impact {
    border-left-color: #667eea;
    border-left-width: 4px;
}

.recommendation-priority {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recommendation-card.high-impact .recommendation-priority {
    background: #d1fae5;
    color: #065f46;
}

.recommendation-card.medium-impact .recommendation-priority {
    background: #e0e7ff;
    color: #3730a3;
}

.recommendation-header {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.recommendation-icon {
    width: 48px;
    height: 48px;
    background: #f3f4f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.recommendation-icon i {
    width: 24px;
    height: 24px;
    color: #667eea;
}

.recommendation-title {
    flex: 1;
}

.recommendation-title h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.recommendation-subtitle {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.recommendation-body {
    margin-bottom: 16px;
    padding-right: 100px;
}

.recommendation-body p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.recommendation-outcome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 8px;
    font-size: 14px;
    color: #1f2937;
}

.recommendation-outcome i {
    width: 16px;
    height: 16px;
    color: #667eea;
    flex-shrink: 0;
}

.recommendation-action {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.recommendation-action:hover {
    background: #5568d3;
    transform: translateY(-1px);
}

.recommendation-action i {
    width: 16px;
    height: 16px;
}

/* Recommended Actions Grid */
.recommended-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.action-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.2s;
    position: relative;
}

.action-card:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.action-card.priority {
    border-color: #10b981;
    border-width: 2px;
}

.action-priority-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    background: #10b981;
    color: #ffffff;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-card .action-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.action-card .action-icon i {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.action-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.action-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 16px 0;
    flex: 1;
}

.action-card .action-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    justify-content: center;
}

.action-card .action-button:hover {
    border-color: #667eea;
    color: #667eea;
}

.action-card .action-button i {
    width: 14px;
    height: 14px;
}

/* Wireframe Styles for Pro Dashboard */
.wireframe {
    position: relative;
}

.wireframe-line {
    height: 12px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-bottom: 8px;
}

.wireframe-line.tiny {
    width: 40px;
}

.wireframe-line.short {
    width: 60px;
}

.wireframe-line.small {
    width: 120px;
}

.wireframe-line.medium {
    width: 180px;
}

.wireframe-line.full {
    width: 100%;
}

.wireframe-line.huge {
    height: 32px;
    margin: 12px 0;
}

.wireframe-box {
    background: #f3f4f6 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wireframe-circle {
    width: 20px;
    height: 20px;
    background: #e5e7eb;
    border-radius: 50%;
    flex-shrink: 0;
}

.wireframe-circle-large {
    width: 32px;
    height: 32px;
    background: #e5e7eb;
    border-radius: 50%;
    margin: 0 auto 12px;
}

.wireframe-badge {
    width: 40px;
    height: 20px;
    background: #e5e7eb;
    border-radius: 10px;
}

.wireframe-badge-rect {
    width: 80px;
    height: 20px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-bottom: 12px;
}

.wireframe-badge-rect.small {
    width: 60px;
    height: 18px;
}

.wireframe-button {
    width: 120px;
    height: 36px;
    background: #e5e7eb;
    border-radius: 8px;
    margin-top: 12px;
}

.wireframe-button.small {
    width: 100%;
    height: 32px;
    margin-top: 8px;
}

.wireframe-bar {
    width: 100%;
    height: 6px;
    background: #f3f4f6;
    border-radius: 3px;
    position: relative;
}

.wireframe-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background: #e5e7eb;
    border-radius: 3px;
}

/* Hide text in wireframe components */
.wireframe h1:not(.business-dashboard-header h1),
.wireframe h2:not(.business-dashboard-header h2):not(.section-header h2),
.wireframe h3:not(.business-dashboard-header h3):not(.sidebar-section > h3),
.wireframe h4:not(.business-dashboard-header h4):not(.performance-card h4),
.wireframe p:not(.business-dashboard-header p):not(.business-subtitle):not(.message-bubble p),
.wireframe span:not(.progress-label):not(.business-dashboard-header span):not(.metric-label) {
    color: transparent !important;
    user-select: none;
}

/* Keep dashboard header text visible */
.business-dashboard-header h1,
.business-dashboard-header .business-subtitle {
    color: #1f2937 !important;
}

/* Keep Airo chat text visible */
.airo-chat .message-bubble,
.airo-chat .chat-input::placeholder,
.airo-chat .chat-input {
    color: inherit !important;
}

/* Keep sidebar tab text visible */
.sidebar-tab {
    color: inherit !important;
}

/* Keep wireframe lines visible */
.wireframe .wireframe-line,
.wireframe .wireframe-box,
.wireframe .wireframe-circle,
.wireframe .wireframe-circle-large,
.wireframe .wireframe-badge,
.wireframe .wireframe-badge-rect,
.wireframe .wireframe-button,
.wireframe .wireframe-bar {
    opacity: 1;
}

/* Hide icons in wireframe */
.wireframe i[data-lucide]:not(.sidebar-tab i) {
    opacity: 0;
}

/* Special handling for recommendation outcome */
.wireframe .recommendation-outcome {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Special handling for metric header in wireframe */
.wireframe .metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

/* Products Modal */
.products-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.products-modal-content {
    background: #ffffff;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.products-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 2px solid #e5e7eb;
}

.products-modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.products-modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #f3f4f6;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.products-modal-close:hover {
    background: #e5e7eb;
    color: #1f2937;
}

.products-modal-close i {
    width: 20px;
    height: 20px;
}

.products-modal-body {
    padding: 32px;
    overflow-y: auto;
}

.modal-section {
    margin-bottom: 32px;
}

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

.modal-section h3 {
    font-size: 14px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 16px 0;
}

.modal-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
}

.modal-product-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-product-card:hover {
    border-color: #a78bfa;
    box-shadow: 0 4px 12px rgba(167, 139, 250, 0.15);
    transform: translateY(-2px);
}

.modal-product-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-product-icon i {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.modal-product-info {
    flex: 1;
}

.modal-product-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.modal-product-info p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.modal-arrow {
    width: 20px;
    height: 20px;
    color: #9ca3af;
    flex-shrink: 0;
}

.modal-product-card:hover .modal-arrow {
    color: #a78bfa;
    transform: translateX(4px);
    transition: all 0.2s;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .dashboard-layout {
        padding: 48px 40px;
    }
    
    /* Keep business dashboard at 64px */
    .dashboard-layout:has(.business-dashboard-header) {
        padding: 48px 64px;
    }
}

@media (max-width: 1024px) {
    .dashboard-layout {
        padding: 32px 24px;
    }
    
    /* Keep business dashboard at 64px */
    .dashboard-layout:has(.business-dashboard-header) {
        padding: 48px 64px;
    }
    
    .dashboard-sidebar.sidebar-visible {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .products-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .products-modal-header {
        padding: 20px 24px;
    }
    
    .products-modal-body {
        padding: 24px;
    }
    
    .modal-products-grid {
        grid-template-columns: 1fr;
    }
    
    .control-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .control-section {
        flex-direction: column;
        align-items: stretch;
    }

    .control-buttons {
        width: 100%;
    }

    .control-btn {
        flex: 1;
    }

    .control-divider {
        width: 100%;
        height: 1px;
    }

    .nav-side {
        flex-direction: column;
    }

    .nav-side .sidebar {
        width: 100%;
        min-height: auto;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }
    
    /* Dashboard Responsive */
    .dashboard-layout {
        flex-direction: column;
        padding: 16px;
    }
    
    /* Business dashboard keeps more padding on mobile */
    .dashboard-layout:has(.business-dashboard-header) {
        padding: 24px;
    }
    
    .dashboard-sidebar.sidebar-visible {
        width: 100%;
    }
    
    .todays-focus {
        padding: 28px 20px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .focus-count {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .focus-task.featured {
        flex-direction: column;
    }
    
    .task-image {
        width: 100%;
        min-height: 200px;
        height: 200px;
    }
    
    .focus-task.featured .task-content {
        padding: 24px 20px;
    }
    
    .time-badge {
        top: 24px;
        right: 20px;
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .focus-task:not(.featured) .task-content {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .focus-task:not(.featured) .task-button-secondary {
        grid-column: 1;
        grid-row: auto;
        justify-self: start;
    }
    
    .task-button {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .task-tags {
        flex-wrap: wrap;
    }
    
    /* Project Manager Responsive */
    .project-manager-layout {
        padding: 24px;
    }
    
    .jump-back-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-section {
        flex-direction: column;
    }
    
    .pm-sidebar {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
    }
    
    .pm-nav-btn {
        white-space: nowrap;
    }
    
    /* Airo Chat Responsive */
    .airo-chat-interface {
        padding: 24px;
    }
    
    .airo-header h1 {
        font-size: 32px;
    }
    
    .quick-actions-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .quick-action-card {
        padding: 12px;
    }
    
    /* Domains, Emails, and Websites Responsive */
    .domains-view,
    .emails-view,
    .websites-view {
        padding: 24px;
    }
    
    .domains-header h1,
    .emails-header h1,
    .websites-header h1 {
        font-size: 24px;
    }
    
    .websites-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .domains-table-container,
    .emails-table-container {
        overflow-x: auto;
    }
}

