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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: #F8FAFC;
    color: #1E293B;
    overflow-x: hidden;
}
/* Alert Banners */
.alert-banner {
padding: 16px 20px;
border-radius: 8px;
margin-bottom: 24px;
display: flex;
align-items: start;
gap: 12px;
border-left: 4px solid;
}

.alert-warning {
background: #FEF3C7;
border-color: #F59E0B;
color: #92400E;
}

.alert-info {
background: #EFF6FF;
border-color: #66B3E3;
color: #1E40AF;
}

.alert-icon {
font-size: 20px;
flex-shrink: 0;
}

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

/* Left Sidebar Navigation */
.sidebar {
    width: 280px;
    background: white;
    border-right: 2px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 100;
}

.sidebar-header {
    padding: 0px 0px 20px 0px;
    border-bottom: 2px solid #E2E8F0;
    text-align: center;
    height:95px;
}
/* Hamburger button (hidden by default, shown on small screens) */
.hamburger-btn {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 200;
    width: 44px;
    height: 44px;
    background: white;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    display: none; /* only visible on small screens */
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0;
}

/* The three lines */
.hamburger-btn .line {
    width: 24px;
    height: 3px;
    background-color: #1E293B; /* dark navy */
    border-radius: 2px;
}

/* Show hamburger and use slide-out sidebar on smaller screens */
@media (max-width: 1024px) {
    .hamburger-btn {
        display: flex;
        left:auto;
        right:16px;

    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .sidebar.mobile-open {
        transform: translateX(0);
    }
}
.tagline {
font-size: 11px;
color: #64748B;
font-weight: 500;
letter-spacing: 0.5px;
text-transform: uppercase;
margin-top: 4px;
}


.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #14B8A6, #0891B2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    flex: 1;
    padding: 16px 0;
    overflow-y: auto;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: #64748B;
    cursor: pointer;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.nav-item:hover {
    background: #F8FAFC;
    color: #66B3E3;
}

.nav-item.active {
    background: #EFF6FF;
    color: #66B3E3;
    border-left-color: #66B3E3;
    font-weight: 500;
}

.nav-icon {
    width: 24px;
    height: 24px;
    background: #E2E8F0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.nav-item.active .nav-icon {
    background: #66B3E3;
    color: white;
}

/* Icon Image System - for replacing emojis with image files */
.icon-img {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
    flex-shrink: 0;
}

/* Size variants */
.icon-img.icon-sm { width: 16px; height: 16px; }
.icon-img.icon-md { width: 20px; height: 20px; }
.icon-img.icon-lg { width: 24px; height: 24px; }
.icon-img.icon-xl { width: 32px; height: 32px; }
.icon-img.icon-xxl { width: 48px; height: 48px; }

/* Context-specific icon sizing */
.nav-item .icon-img { width: 20px; height: 20px; }
.btn .icon-img { width: 18px; height: 18px; margin-right: 8px; }
.empty-state .icon-img { width: 48px; height: 48px; opacity: 0.4; }

/* Main Content- Desktop rule*/
.main-content {
    flex: 1;
    margin-left: 280px;
    overflow-y: visible;
    height: 100vh;
    transition: transform 0.28s ease; 
}

.content-header {
    background: white;
    border-bottom: 2px solid #E2E8F0;
    padding: 24px 32px;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    height: 95px;
}

.content-title {
    font-size: 28px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 4px;
}

.content-subtitle {
    font-size: 14px;
    color: #64748B;
}

.content-body {
    padding: 32px;
}

/* Screen Sections */
.screen-section {
    display: none;
}

.screen-section.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Buttons */
.btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #14B8A6, #0891B2);
    color: white;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    font-weight: bold;
    text-align: center;   /* ← centers button text */
}
/* iPhone 12 and similar device widths */
@media screen and (max-width: 390px) {
    .btn-primary {
        font-size: 10px;    /* Adjust as needed */
        padding: 10px 14px; /* Optional: improves tap target and fit */
    }
}


.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: white;
    color: #64748B;
    border: 2px solid #E2E8F0;
    text-align: center;
    font-weight: bold;
}
/* iPhone 12 and similar device widths */
@media screen and (max-width: 390px) {
    .btn-secondary {
        font-size: 10px;    /* Adjust as needed */
        padding: 10px 14px; /* Optional: improves tap target and fit */
    }
}


.btn-secondary:hover {
    border-color: #66B3E3;
    color: #66B3E3;
}

.btn-danger {
    background: #DC2626;
    color: white;
}
@media screen and (max-width: 390px) {
    .btn-danger {
        font-size: 10px;    /* Adjust as needed */
        padding: 10px 14px; /* Optional: improves tap target and fit */
    }
}

.btn-success {
    background: #10B981;
    color: white;
}
@media screen and (max-width: 390px) {
    .btn-success {
        font-size: 10px;    /* Adjust as needed */
        padding: 10px 14px; /* Optional: improves tap target and fit */
    }
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

/* Table */
.table-container {
    background: white;
    border-radius: 12px;
    border: 2px solid #E2E8F0;
    overflow: hidden;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 2px solid #E2E8F0;
}

.table-title {
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
}

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

thead {
    background: #F8FAFC;
}

th {
    padding: 16px 24px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    padding: 20px 24px;
    border-top: 1px solid #E2E8F0;
    color: #1E293B;
}

tbody tr {
    transition: background 0.2s;
    cursor: pointer;
}

tbody tr:hover {
    background: #F8FAFC;
}

.badge {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
}
/* USE THIS BADGING COLOR */
.badge-idea { background: #FEF3C7; color: #92400E; }
.badge-planning { background: #DBEAFE; color: #1E40AF; }
.badge-active {
    background: #E8F5E9;
    color: #2E7D32;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 13px;
    display: inline-block;
}
.badge-completed {
    background: #E3F2FD !important;
    color: #1565C0 !important;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 13px;
    display: inline-block;
}
    .badge-paused {
        background: #ffb242;
        color: #000000;
        padding: 6px 12px;
        border-radius: 12px;
        font-size: 13px;
        display: inline-block;
    }

    .badge-exploring {
        background: #2ec1f7;
        color: #000000;
        padding: 6px 12px;
        border-radius: 12px;
        font-size: 13px;
        display: inline-block;
    }
    .badge-draft {
        background: #FFF8E1;
        color: #F9A825;
        padding: 6px 12px;
        border-radius: 12px;
        font-size: 13px;
        display: inline-block;
    }
    .badge-scheduled {
        background: #EDE7F6;
        color: #5E35B1;
        padding: 6px 12px;
        border-radius: 12px;
        font-size: 13px;
        display: inline-block;
    }

.progress-mini {
    width: 80px;
    height: 6px;
    background: #E2E8F0;
    border-radius: 3px;
    overflow: hidden;
}

.progress-mini-fill {
    height: 100%;
    background: linear-gradient(90deg, #66B3E3, #8B5CF6);
    border-radius: 3px;
}

/* ============================
   MODAL OVERLAY
============================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  /* ============================
     MODAL CONTAINER
  ============================ */
  .modal {
    background: #fff;
    border-radius: 12px;
    width: 70%;                /* MEDIUM SIZE */
    max-width: 1100px;         /* Prevents overly wide screens */
    max-height: 90vh;          /* Allows scrolling but stays visible */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  }
  
  /* ============================
     MODAL HEADER
  ============================ */
  .modal-header {
    padding: 20px 28px;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .modal-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
  }
  
  .modal-close {
    border: none;
    background: none;
    font-size: 26px;
    cursor: pointer;
    color: #8a8a8a;
  }
  
  /* ============================
     MODAL BODY
  ============================ */
  .modal-body {
    padding: 24px 28px;
    overflow-y: auto;
  }
  
  /* ============================
     MODAL FOOTER
  ============================ */
  .modal-footer {
    padding: 16px 28px;
    border-top: 1px solid #e5e7eb;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
  }
  
  /* ============================
     RESPONSIVE
  ============================ */
  @media (max-width: 900px) {
    .modal {
      width: 94%;
      max-width: 94%;
    }
  }
  

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 8px;
}

.form-label .required {
    color: #DC2626;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s;
}
.filterideas-form-input
{
    width: 200px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #66B3E3;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

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

.form-hint {
    font-size: 12px;
    color: #64748B;
    margin-top: 6px;
}

/* Tab Navigation (for Idea Details) */
.tab-nav {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid #E2E8F0;
    margin-bottom: 24px;
}

.tab-btn {
    padding: 12px 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: #64748B;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn:hover {
    color: #66B3E3;
    background: #F8FAFC;
}

.tab-btn.active {
    color: #66B3E3;
    border-bottom-color: #66B3E3;
}

.tab-content {
    display: none;
}

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

/* Inversion Questions */
.inversion-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inversion-item {
    background: #F8FAFC;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    padding: 16px;
}

.inversion-question {
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.inversion-answer {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
}

/* Kanban Board */
.kanban-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.kanban-column {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 16px;
    border: 2px solid #E2E8F0;
}

.kanban-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #E2E8F0;
}

.kanban-title {
    font-weight: 600;
    color: #1E293B;
    font-size: 14px;
}

.kanban-count {
    background: #E2E8F0;
    color: #64748B;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.task-card {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.task-card:hover {
    border-color: #66B3E3;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.task-title {
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 8px;
    font-size: 14px;
}

.task-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

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

.stat-card {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s;
}

.stat-card:hover {
    border-color: #66B3E3;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #66B3E3;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: #64748B;
    font-weight: 500;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-title {
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 8px;
}

.empty-text {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 24px;
}

/* Responsive for Side bar*/
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }
    
    .sidebar.mobile-open {
        transform: translateX(0);
    }
    
    
    .kanban-board {
        grid-template-columns: 1fr;
    }
}

/* Action Buttons in Table */
.action-btn {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.action-btn-view {
    background: #EFF6FF;
    color: #66B3E3;
}

.action-btn-view:hover {
    background: #66B3E3;
    color: white;
}

.action-btn-edit {
    background: #F3E8FF;
    color: #8B5CF6;
}

.action-btn-edit:hover {
    background: #8B5CF6;
    color: white;
}
/* ========================================
   PRICING VALIDATION TAB STYLES
   ======================================== */

   .pricing-section {
    background: #F8FAFC;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.pricing-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 16px;
}

/* Competitor Pricing Cards */
.competitor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.competitor-card {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    padding: 16px;
    transition: all 0.2s;
}

.competitor-card:hover {
    border-color: #66B3E3;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

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

.competitor-price {
    font-size: 24px;
    font-weight: 700;
    color: #66B3E3;
    margin-bottom: 8px;
}

.competitor-notes {
    font-size: 13px;
    color: #64748B;
    line-height: 1.5;
}

/* Pricing Feedback Items */
.pricing-feedback-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-feedback-item {
    background: white;
    border: 2px solid;
    border-radius: 8px;
    padding: 16px;
}

.feedback-negative {
    border-color: #FCA5A5;
    background: #FEF2F2;
}

.feedback-positive {
    border-color: #86EFAC;
    background: #F0FDF4;
}

.feedback-neutral {
    border-color: #FDE68A;
    background: #FEFCE8;
}

.feedback-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.feedback-icon-negative {
    background: #FEE2E2;
}

.feedback-icon-positive {
    background: #D1FAE5;
}

.feedback-icon-neutral {
    background: #FEF3C7;
}

/* Pricing Timeline */
.pricing-timeline {
    position: relative;
    padding-left: 40px;
}

.pricing-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E2E8F0;
}

.timeline-item {
    position: relative;
    margin-bottom: 24px;
    padding-bottom: 24px;
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 4px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-marker-old {
    background: #94A3B8;
}

.timeline-marker-invalidated {
    background: #DC2626;
}

.timeline-marker-testing {
    background: #66B3E3;
}

.timeline-marker-validated {
    background: #10B981;
}

.timeline-content {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    padding: 16px;
}

.timeline-date {
    font-size: 12px;
    color: #64748B;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.timeline-title {
    font-size: 14px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 8px;
}

.timeline-price {
    font-size: 20px;
    font-weight: 700;
    color: #66B3E3;
    margin-bottom: 8px;
}

.timeline-reason {
    font-size: 13px;
    color: #64748B;
    line-height: 1.5;
}

/* Pricing Recommendation Box */
.pricing-recommendation {
    background: linear-gradient(135deg, #EFF6FF, #F3E8FF);
    border: 3px solid #66B3E3;
    border-radius: 12px;
    padding: 24px;
}

.recommendation-content {
    margin-top: 16px;
}

.recommendation-price {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #14B8A6, #0891B2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.recommendation-model {
    font-size: 16px;
    color: #64748B;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Responsive adjustments for pricing tab */
@media (max-width: 768px) {
    .competitor-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-timeline {
        padding-left: 30px;
    }
    
    .timeline-marker {
        left: -30px;
        width: 24px;
        height: 24px;
    }
    
    .recommendation-price {
        font-size: 36px;
    }
}
/* ========================================
   PARTNERSHIP TRACKER STYLES
   ======================================== */

   .partnership-dimension {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.dimension-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #E2E8F0;
}

.dimension-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
    margin: 0;
}

.dimension-content {
    margin-top: 20px;
}

/* Conversation Timeline */
.conversation-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.conversation-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    transition: all 0.2s;
}

.conversation-item:hover {
    border-color: #66B3E3;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.conversation-date {
    min-width: 120px;
    padding-right: 20px;
    border-right: 2px solid #E2E8F0;
}

.conversation-content {
    flex: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .conversation-item {
        flex-direction: column;
    }
    
    .conversation-date {
        border-right: none;
        border-bottom: 2px solid #E2E8F0;
        padding-right: 0;
        padding-bottom: 12px;
    }
    
    .partnership-dimension {
        padding: 16px;
    }
    
    .dimension-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
.logo-image {
    width: 90px;      /* Slightly smaller than available space */
    max-width: 100%;   /* Never overflow sidebar */
    height: auto;      /* Maintains aspect ratio */
    display: block;
    margin: 0 auto 12px auto;
}
/*subscription class */
.hidden {
    display: none !important;
}
/* Settings - Subscription */
.settings-section {
    margin-top: 24px;
}

.settings-section h2 {
    margin-bottom: 4px;
}

.settings-subtitle {
    margin: 0 0 16px;
    font-size: 14px;
    color: #64748b;
}

.current-plan-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f1f5f9;
    margin-bottom: 18px;
}

.current-plan-card .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
    margin: 0;
}

.current-plan-card .plan-name {
    margin: 2px 0 0;
    font-weight: 600;
    font-size: 15px;
}

.plan-status-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    background: #e5e7eb;
    color: #4b5563;
}

.plan-status-pill.active {
    background: #dcfce7;
    color: #15803d;
}

.plan-status-pill.pending {
    background: #fef9c3;
    color: #854d0e;
}

.plan-status-pill.canceled {
    background: #fee2e2;
    color: #b91c1c;
}

.plan-compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.settings-plan-card {
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
}

.settings-plan-card.current-plan {
    border-color: #6366f1;
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.15);
}

.settings-plan-header h3 {
    margin: 0 0 2px;
    font-size: 15px;
}

.settings-plan-header .price {
    margin: 0;
    font-weight: 600;
}

.settings-plan-header .billing-note {
    margin: 0;
    font-size: 12px;
    color: #64748b;
}

.settings-plan-features {
    list-style: none;
    padding-left: 0;
    margin: 8px 0 10px;
    font-size: 13px;
    color: #0f172a;
}

.settings-plan-features li {
    margin-bottom: 3px;
}

.settings-plan-features .muted {
    color: #9ca3af;
}

.settings-plan-card button {
    align-self: flex-start;
}

.advisor-cta {
    margin-top: 4px;
    font-size: 13px;
    color: #64748b;
}

.advisor-cta a {
    color: #4f46e5;
    text-decoration: underline;
}
/* Locked / upsell nav items */
.nav-item.locked-feature {
    opacity: 0.8;
    position: relative;
}

.nav-item .upgrade-pill {
    margin-left: 6px;
    padding: 2px 6px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 500;
    background-color: #fee2e2;
    color: #b91c1c;
}
/* Wider modal for idea details */
.modal.modal-wide {
    max-width: 1000px;
}

/* Slider styling */
.idea-slider-group {
    margin-bottom: 24px;
}

.slider-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-row input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    appearance: none; 
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #bfc6dd, #f8481c);
    outline: none;
}

.slider-row input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    border: 3px solid #66B3E3;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.25);
}

.slider-row input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    border: 3px solid #66B3E3;
}

.slider-label {
    font-size: 13px;
    color: #1e293b;
    min-width: 120px;
}

.slider-scale {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #64748b;
    margin-top: 4px;
}

/* Dynamic lists (problem drivers, features, pricing models) */
.dynamic-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}
/* Normalize placeholder size inside dynamic lists */
.dynamic-row .form-input::placeholder {
    font-size: 13px;
}

/* Extra safety for competitor price, if your base styles differ */
.competitor-price::placeholder {
    font-size: 13px;
}

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

.dynamic-row .form-input,
.dynamic-row .form-select {
    flex: 1;
}

.dynamic-row .btn-remove-row {
    border: none;
    background: #fee2e2;
    color: #b91c1c;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    cursor: pointer;
}

.dynamic-row .btn-remove-row:hover {
    background: #fecaca;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-item {
    background: #e2e8f0;
    color: #1e293b;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tag-remove {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: #475569;
}

.tag-remove:hover {
    color: #dc2626;
}

/* Validation Tasks screen */
.card-section {
    margin-top: 8px;
    padding: 5px 30px; color: #64748B;
}

.card.card-header-only {
    border-radius: 12px 12px 0 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 16px 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
}

/* Task cards */
.validation-task-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.validation-task-main {
    max-width: 75%;
}

.validation-task-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: #0f172a;
}

.validation-task-meta {
    font-size: 13px;
    color: #475569;
    margin-bottom: 4px;
}

.validation-task-meta span {
    display: block;
}

.validation-task-footer {
    font-size: 13px;
    color: #64748b;
    margin-top: 6px;
}

.validation-task-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
/* Active (open) tasks */
.validation-task-card.active-task {
    border-left: 4px solid #66B3E3;   /* Blue */
    background: #f0f9ff;              /* Light blue tint */
}

/* Completed tasks */
.validation-task-card.completed-task {
    border-left: 4px solid #10b981;   /* Green */
    background: #f0fdf4;              /* Light green tint */
    opacity: 0.85;                    /* Dim slightly */
}


.status-badge {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 999px;
}

.status-badge-overdue {
    background: #fee2e2;
    color: #b91c1c;
}

/* Template grid & cards */
.template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.template-card {
    border-radius: 12px;
    background: #f8fafc;
    padding: 16px 12px;
    border: 1px solid #e2e8f0;
    text-align: left;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.template-card:hover {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.template-icon {
    font-size: 28px;
}

.template-title {
    font-weight: 600;
    color: #0f172a;
}

.template-subtitle {
    font-size: 13px;
    color: #64748b;
}

/* Tip box */
.tip-box {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #eff6ff;
    color: #1e293b;
    font-size: 13px;
}

.tip-icon {
    font-size: 18px;
    margin-top: 1px;
}

/* Detail rows */
.detail-row {
    margin-bottom: 12px;
}

.detail-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 14px;
    color: #0f172a;
}
.mockup-card {
    padding: 20px;
    background: white;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    margin-bottom: 18px;
}
.mockup-card-buttons {
    margin-top: 16px; /* spacing below dynamic content */
    display: flex;
    gap: 12px;
}

.mockup-card-buttons .btn {
    padding: 10px 18px !important; /* better sizing */
}



.upload-dropzone {
    border: 2px dashed #CBD5E1;
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 20px;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.45); /* slate-900/50 */
    display: none; /* overridden by JS */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-overlay.hidden {
    display: none;
}

/* Modal Container */
.modal {
    background: #ffffff;
    width: 550px;
    max-width: 90%;
    border-radius: 16px;
    box-shadow: 0px 8px 32px rgba(0,0,0,0.15);
    overflow: hidden;
    animation: modalFadeIn 0.25s ease;
}

/* Larger version (for uploads or detail views) */
.large-modal {
    width: 700px;
    max-width: 95%;
}

/* Modal Header */
.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #0F172A;
}

.modal-close {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #64748B;
}

/* Modal Body */
.modal-body {
    padding: 24px;
    max-height: 65vh;
    overflow-y: auto;
}

/* Modal Footer */
.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #E2E8F0;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Upload Dropzone */
.upload-dropzone {
    border: 2px dashed #CBD5E1;
    border-radius: 12px;
    padding: 36px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease;
    margin-bottom: 20px;
    background: #F8FAFC;
}

.upload-dropzone:hover {
    border-color: #93B47E;
    background: #F1F5F9;
}

.upload-dropzone p {
    margin: 0;
    font-size: 15px;
    color: #475569;
}

/* Form Elements inside modal */
.modal .form-group {
    margin-bottom: 16px;
}

.modal input,
.modal textarea,
.modal select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-size: 15px;
    color: #0F172A;
    background: #ffffff;
}

.modal input:focus,
.modal textarea:focus,
.modal select:focus {
    border-color: #93B47E;
    outline: none;
    box-shadow: 0 0 0 2px rgba(147, 180, 126, 0.25);
}

/* Animation */
@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/*Details of Validation Details */
.mockup-details-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 30px;
    padding: 28px;
}

.mockup-full-image {
    width: 100%;
    border-radius: 12px;
    background: #F1F5F9;
}

.mockup-details-right {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.mockup-details-button-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mockup-details-box {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 18px;
}
#mockupDetailsButtons {
    margin-top: 16px;
    display: flex;
    gap: 12px;
}


.details-box-title {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
}

.details-box-content {
    font-size: 14px;
    color: #1E293B;
}

.details-box-stats {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #1E293B;
}

#mockupFeedbackList > .feedback-item {
    background: white;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 10px;
    border-left: 4px solid #93B47E;
}
/* ============================================
   IDEA CARD STYLING (required by ideas.js)
   ============================================ */

   .card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.idea-card .card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.idea-left {
    flex: 1;
}

.idea-title {
    font-size: 18px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 6px;
}

.idea-description {
    font-size: 14px;
    color: #475569;
    margin-bottom: 8px;
}

.idea-right {
    display: flex;
    align-items: center;
}

.btn-outline {
    background: #F1F5F9;
    border: 1px solid #CBD5E1;
    color: #1E293B;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}
@media screen and (max-width: 390px) {
    .btn-outline {
        font-size: 10px;    /* Adjust as needed */
        padding: 10px 14px; /* Optional: improves tap target and fit */
    }
}

.btn-outline:hover {
    background: #E2E8F0;
}
.idea-filters {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-left: auto;
}
.filter-completed-active {
    background: #ffe5e5 !important;
    border-color: #ffb3b3 !important;
    color: #b30000 !important;
}
.filter-btn {
    transition: 0.2s;
}

.filter-btn.active {
    background: #e4eaf3 !important;
    border-color: #c5cedb !important;
}
.badge-secondary {
    background: #E2E8F0;
    color: #475569;
}

.sidebar-item.active {
    background: #e8f0ff;
    border-left: 4px solid #4d77ff;
    color: #4d77ff !important;
    font-weight: 600;
}

/* Sidebar active item highlight */
.nav-item {
    position: relative;
    padding-left: 20px;
    cursor: pointer;
}

.nav-item.active {
    background: #eef3ff;
    color: #4d77ff !important;
    font-weight: 600;
}

.nav-item.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #4d77ff;
    border-radius: 0 4px 4px 0;
}

/* Highlight icon when active */
.nav-item.active img {
    filter: brightness(0) saturate(100%) invert(34%) sepia(98%) saturate(1595%) hue-rotate(203deg) brightness(95%) contrast(93%);
}

.feedback-item {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  
  .feedback-text {
    font-size: 14px;
    color: #1E293B;
  }
  
  .feedback-meta {
    font-size: 11px;
    color: #64748B;
    margin-top: 6px;
  }
  .version-item {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.version-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.version-label {
    font-size: 13px;
    font-weight: 600;
    color: #1E293B;
}

.version-meta {
    font-size: 11px;
    color: #64748B;
    margin-top: 4px;
}

.btn-xs {
    padding: 4px 8px;
    font-size: 11px;
}

/* Collaboration Board Button */
.btn-collab-board {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #0F172A;
    border: 1px solid #CBD5E1;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-collab-board:hover {
    background: #F8FAFC;
    border-color: #94A3B8;
}

.btn-collab-board:active {
    background: #E2E8F0;
    border-color: #64748B;
}

/* Optional icon styling */
.btn-collab-board .icon {
    font-size: 16px;
}

/* For placement next to Upload Mockup */
.collab-board-btn-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

/* Collaboration Board Layout */
.collab-board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Column container */
.collab-col {
    background: #ffffff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Column header */
.collab-col-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
}

.col-icon {
    font-size: 18px;
}

.col-count {
    margin-left: auto;
    background: #e2e8f0;
    padding: 4px 10px;
    font-size: 13px;
    border-radius: 20px;
    color: #475569;
}

/* Empty state */
.collab-empty {
    padding: 20px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

/* Card */
.collab-card {
    background: #f8fafc;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: 0.15s ease;
}

.collab-card:hover {
    background: #f1f5f9;
    transform: scale(1.01);
}

.card-version {
    font-size: 12px;
    font-weight: 600;
    background: #e2e8f0;
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 6px;
}

.collab-card h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

.card-meta {
    display: flex;
    gap: 14px;
    margin: 8px 0;
    font-size: 13px;
    color: #64748b;
}

/* Dragging state */
.collab-card.dragging {
    opacity: 0.5;
    transform: scale(0.98);
}

/* Highlight drop zone */
.collab-col-body.drag-over {
    background: #F1F5F9;
    border: 2px dashed #4B9BE3;
    border-radius: 10px;
}

/* Desktop layout (unchanged) */
.collab-columns {
    display: flex;
    gap: 20px;
}

/* =====================================================
   MOBILE ADJUSTMENTS
   ===================================================== */
@media (max-width: 768px) {

    /* Stack columns */
    .collab-columns {
        flex-direction: column;
        gap: 16px;
    }

    .collab-col {
        width: 100% !important;
    }

    .collab-card {
        width: 100% !important;
        padding: 12px;               /* slightly smaller padding */
        margin-bottom: 10px;         /* tighter spacing */
        border-radius: 8px;          /* softer on mobile */
    }

    /* Remove hover effect on touch devices */
    .collab-card:hover {
        transform: none;
        background: #f8fafc;
    }

    /* Slightly smaller text for long names */
    .collab-card h4 {
        font-size: 14px;
    }

    /* Meta row wraps cleanly on narrow screens */
    .card-meta {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 12px;
        margin: 6px 0;
    }

    /* Version badge spacing for mobile */
    .card-version {
        font-size: 11px;
        padding: 2px 6px;
    }
}



/* Team Pills */
.team-badges {
    display: flex;
    gap: 6px;
}

.team-pill {
    background: #6366f1;
    color: white;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 8px;
}
.btn-back {
    background: #ffffff;
    border: 1px solid #CBD5E1;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #0F172A;
    cursor: pointer;
    margin-bottom: 16px;
    transition: 0.2s ease;
}

.btn-back:hover {
    background: #F8FAFC;
    border-color: #94A3B8;
}

.btn-back:active {
    background: #E2E8F0;
    border-color: #64748B;
}
/* ===========================
   NOTIFICATION BANNER
=========================== */

#notification-container {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: auto;
    max-width: 90%;
}

/* Base notification style */
.notification {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #000000; /* your font color */
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.25s ease, fadeOut 0.3s ease forwards;
    animation-delay: 0s, 4.7s; /* 5s display */
    cursor: pointer;
    opacity: 0.95;
}

/* Color variants */
.notification-success {
    background: #49987F;
}

.notification-warning {
    background: #FFD700;
}

.notification-error {
    background: #E51A21;
}

.notification-info {
    background: #4B9BE3;
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 0.95;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}
/* Delete Confirmation System */

.delete-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.delete-dialog {
    background: #ffffff;
    padding: 24px;
    width: 340px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.2);
    text-align: center;
}

.delete-message {
    font-size: 16px;
    color: #000000;
    margin-bottom: 20px;
}

.delete-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.btn-cancel {
    flex: 1;
    background: #F1F5F9;
    border: 1px solid #CBD5E1;
    padding: 10px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
}

.btn-cancel:hover {
    background: #E2E8F0;
}

.btn-delete {
    flex: 1;
    background: #E51A21; /* your red */
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
}

.btn-delete:hover {
    opacity: 0.9;
}

.hidden {
    display: none !important;
}
/* Redesigned Mockup Modal Layout */
.mockup-modal {
    max-width: 980px !important;
    width: 90%;
}

.mockup-modal-body {
    max-height: 72vh;
    overflow-y: auto;
}

.mockup-details-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
}

/* Smaller screens */
@media (max-width: 900px) {
    .mockup-details-layout {
        grid-template-columns: 1fr;
    }
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 16px;
}

/* Preview box */
.mockup-preview-box {
    border: 1px solid #E2E8F0;
    background: #F8FAFC;
    border-radius: 10px;
    padding: 16px;
    min-height: 260px;
}

/* Feedback scroll panel */
.feedback-scroll {
    max-height: 650px;
    overflow-y: auto;
    border: 1px solid #E2E8F0;
    background: white;
    border-radius: 10px;
    padding: 14px;
}

/* Stack buttons neatly */
.button-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* Interview detail layout */

.interview-modal .modal-body {
    padding-top: 8px;
  }
  
  .interview-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 24px;
    align-items: flex-start;
  }
  
  .interview-left,
  .interview-right {
    min-width: 0;
  }
  
  .section-title {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
  }
  
  /* Stack on smaller screens */
  @media (max-width: 900px) {
    .interview-layout {
      grid-template-columns: 1fr;
    }
  }
  /* Interview Detail Modal - Wider with Better Spacing */

/* Specific width for interview modal */
.modal-interview-wide {
    width: 900px;
    max-width: 95%;
}

/* Interview Layout Grid */
.interview-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: flex-start;
}

.interview-left,
.interview-right {
    min-width: 0;
}

/* Section Titles */
.section-title {
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: 600;
    color: #0F172A;
}

/* Form Groups - Better Spacing */
.interview-layout .form-group {
    margin-bottom: 20px;
}

.interview-layout .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    margin-bottom: 8px;
}

.interview-layout .form-input,
.interview-layout .form-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-size: 15px;
    color: #0F172A;
    background: #ffffff;
    transition: all 0.2s ease;
}

.interview-layout .form-input:focus,
.interview-layout .form-textarea:focus {
    border-color: #66B3E3;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.interview-layout .form-textarea {
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}

/* Card Styling within Interview Modal */
.interview-layout .card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 24px;
}

/* Form Hint Text */
.form-hint {
    font-size: 13px;
    color: #64748B;
    margin-top: 8px;
    line-height: 1.5;
}

/* Checkbox Styling */
.interview-layout input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    cursor: pointer;
}

.interview-layout .form-group label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #1E293B;
    cursor: default;
}

/* Button Styling in Interview Modal */
.interview-layout .btn {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
}

/* Stack on smaller screens */
@media (max-width: 1024px) {
    .modal-interview-wide {
        width: 95%;
        max-width: 700px;
    }
    
    .interview-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .modal-interview-wide {
        width: 95%;
        max-width: 100%;
    }
    
    .interview-layout .card {
        padding: 20px;
    }
}
/* Idea Detail Modal - Wider with Better Spacing */

/* Specific width for idea modal */
.modal-idea-wide {
    width: 950px;
    max-width: 95%;
}

/* Tab Navigation - Enhanced */
.modal-idea-wide .tab-nav {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid #E2E8F0;
    margin-bottom: 32px;
}

.modal-idea-wide .tab-btn {
    padding: 14px 24px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: #64748B;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 6px 6px 0 0;
}

.modal-idea-wide .tab-btn:hover {
    color: #66B3E3;
    background: #F8FAFC;
}

.modal-idea-wide .tab-btn.active {
    color: #66B3E3;
    border-bottom-color: #66B3E3;
    background: #F8FAFC;
}

/* Tab Content */
.modal-idea-wide .tab-content {
    display: none;
}

.modal-idea-wide .tab-content.active {
    display: block;
}

/* Form Groups - Better Spacing */
.modal-idea-wide .form-group {
    margin-bottom: 24px;
}

.modal-idea-wide .form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.modal-idea-wide .form-input,
.modal-idea-wide .form-textarea,
.modal-idea-wide .form-select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-size: 15px;
    color: #0F172A;
    background: #ffffff;
    transition: all 0.2s ease;
    line-height: 1.5;
}

.modal-idea-wide .form-input:focus,
.modal-idea-wide .form-textarea:focus,
.modal-idea-wide .form-select:focus {
    border-color: #66B3E3;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.modal-idea-wide .form-textarea {
    resize: vertical;
    font-family: inherit;
}

.modal-idea-wide .form-hint {
    font-size: 13px;
    color: #64748B;
    margin-top: 8px;
    line-height: 1.5;
}

/* Slider Styling - Enhanced */
.modal-idea-wide .idea-slider-group {
    margin-bottom: 28px;
    padding: 20px;
    background: #F8FAFC;
    border-radius: 10px;
    border: 1px solid #E2E8F0;
}

.modal-idea-wide .slider-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 12px 0;
}

.modal-idea-wide .slider-row input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    appearance: none; 
    height: 6px;
    border-radius: 3px;
    background: #E2E8F0;
    outline: none;
}

.modal-idea-wide .slider-row input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #66B3E3;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-idea-wide .slider-row input[type="range"]::-webkit-slider-thumb:hover {
    background: #2563EB;
    transform: scale(1.1);
}

.modal-idea-wide .slider-row input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #66B3E3;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.modal-idea-wide .slider-row input[type="range"]::-moz-range-thumb:hover {
    background: #2563EB;
    transform: scale(1.1);
}

.modal-idea-wide .slider-label {
    font-weight: 600;
    color: #1E293B;
    min-width: 120px;
    font-size: 14px;
}

.modal-idea-wide .slider-scale {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #64748B;
    margin-top: 8px;
}

/* Dynamic Lists */
.modal-idea-wide .dynamic-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

/* Pricing Section */
.modal-idea-wide .pricing-section {
    margin-bottom: 32px;
}

.modal-idea-wide .pricing-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 16px;
}

/* Buttons */
.modal-idea-wide .btn {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
}

.modal-idea-wide .btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

/* Tag List */
.modal-idea-wide .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Modal Body Scrolling */
.modal-idea-wide .modal-body {
    padding: 28px;
    max-height: 70vh;
    overflow-y: auto;
}

/* Modal Footer Spacing */
.modal-idea-wide .modal-footer {
    padding: 20px 28px;
    gap: 12px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .modal-idea-wide {
        width: 95%;
        max-width: 700px;
    }
    
    .modal-idea-wide .tab-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-idea-wide .tab-btn {
        padding: 12px 18px;
        font-size: 14px;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .modal-idea-wide {
        width: 95%;
        max-width: 100%;
    }
    
    .modal-idea-wide .modal-body {
        padding: 20px;
    }
    
    .modal-idea-wide .modal-footer {
        padding: 16px 20px;
        flex-wrap: wrap;
    }
    
    .modal-idea-wide .form-group {
        margin-bottom: 20px;
    }
}
/* Mockup Detail Modal - Redesigned with Better Spacing */

/* Modal Size */
.modal-mockup-wide {
    width: 1100px;
    max-width: 95%;
}

/* Modal Body */
.modal-mockup-wide .modal-body {
    padding: 32px;
    max-height: 75vh;
    overflow-y: auto;
}

/* Two-Column Layout */
.mockup-details-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.mockup-left,
.mockup-right {
    min-width: 0;
}

/* Section Titles */
.mockup-details-layout .section-title {
    font-size: 18px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #E2E8F0;
}

/* Form Groups */
.mockup-details-layout .form-group {
    margin-bottom: 24px;
}

.mockup-details-layout .form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.mockup-details-layout .form-input,
.mockup-details-layout .form-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-size: 15px;
    color: #0F172A;
    background: #ffffff;
    transition: all 0.2s ease;
}

.mockup-details-layout .form-input:focus,
.mockup-details-layout .form-textarea:focus {
    border-color: #66B3E3;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.mockup-details-layout .form-textarea {
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}

/* Button Stack */
.button-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
    margin-bottom: 28px;
}

.button-stack .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.button-stack .icon-img {
    width: 18px;
    height: 18px;
}

/* Preview Box */
.mockup-preview-box {
    border: 2px solid #E2E8F0;
    background: #F8FAFC;
    border-radius: 12px;
    padding: 20px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mockup-preview-box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mockup-preview-box:empty::before {
    content: 'Preview will appear here';
    color: #94A3B8;
    font-size: 14px;
    font-weight: 500;
}

/* Feedback Panel */
.feedback-scroll {
    max-height: 650px;
    overflow-y: auto;
    border: 2px solid #E2E8F0;
    background: white;
    border-radius: 12px;
    padding: 20px;
}

.feedback-scroll::-webkit-scrollbar {
    width: 8px;
}

.feedback-scroll::-webkit-scrollbar-track {
    background: #F1F5F9;
    border-radius: 4px;
}

.feedback-scroll::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}

.feedback-scroll::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}

/* Feedback Empty State */
.feedback-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

/* Individual Feedback Item */
.feedback-item {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
}

.feedback-item:last-child {
    margin-bottom: 0;
}

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

.feedback-author {
    font-weight: 600;
    color: #1E293B;
    font-size: 14px;
}

.feedback-date {
    font-size: 12px;
    color: #64748B;
}

.feedback-text {
    color: #334155;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Modal Footer */
.modal-mockup-wide .modal-footer {
    padding: 20px 32px;
    border-top: 2px solid #E2E8F0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Buttons */
.modal-mockup-wide .btn {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
}

.modal-mockup-wide .btn-sm {
    padding: 10px 16px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .modal-mockup-wide {
        width: 95%;
        max-width: 800px;
    }
    
    .mockup-details-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .feedback-scroll {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .modal-mockup-wide {
        width: 95%;
        max-width: 100%;
    }
    
    .modal-mockup-wide .modal-body {
        padding: 24px;
    }
    
    .mockup-details-layout {
        gap: 24px;
    }
    
    .mockup-details-layout .form-group {
        margin-bottom: 20px;
    }
    
    .button-stack {
        gap: 10px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .modal-mockup-wide .modal-footer {
        padding: 16px 24px;
        flex-direction: column;
        gap: 12px;
    }
    
    .modal-mockup-wide .modal-footer > * {
        width: 100%;
    }
}

/* Loading State for Preview */
.mockup-preview-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.mockup-preview-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #E2E8F0;
    border-top-color: #66B3E3;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Icon Styling */
.icon-img {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}
/* Potential Customer Cards */
.pc-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .pc-avatar {
    width: 48px;
    height: 48px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #1d4ed8;
    font-size: 18px;
  }
  
  .pc-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .pc-name {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
  }
  
  .pc-meta {
    font-size: 13px;
    color: #6b7280;
  }
  
  .pc-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .pc-actions .btn {
    padding: 6px 12px;
    font-size: 13px;
  }
  /* Person Detail Layout */

.person-detail-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
  }
  
  .person-left,
  .person-right {
    min-width: 0;
  }
  
  .pd-notes-log {
    margin-top: 12px;
    border-top: 1px solid #e5e7eb;
    padding-top: 12px;
    max-height: 180px;
    overflow-y: auto;
  }
  
  .pd-note-item {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    color: #374151;
  }
  
  /* Stack layout on mobile */
  @media (max-width: 900px) {
    .person-detail-layout {
      grid-template-columns: 1fr;
    }
  }
  /* ============================
   UNIVERSAL LIST ITEM STYLE
   Used by Interviews, Ideas, Tasks, Partners, etc.
============================ */
.list-item {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 10px 20px;
    margin-bottom: 16px;
    cursor: default;
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.list-item:hover {
    border-color: #66B3E3;
    background: #F8FAFC;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.list-item-title {
    font-size: 17px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 6px;
}

.list-item-sub {
    font-size: 14px;
    color: #475569;
    margin-bottom: 10px;
}

.list-item-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 13px;
    color: #64748B;
}

.small-date {
    font-size: 12px;
    color: #94A3B8;
}
/* Partner Detail Modal - Redesigned with Better Spacing */

/* Modal Size */
.modal-partner-wide {
    width: 1000px;
    max-width: 95%;
}

/* Modal Body */
.modal-partner-wide .modal-body {
    padding: 32px;
    max-height: 75vh;
    overflow-y: auto;
}

/* Two-Column Layout */
.partner-details-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.partner-left,
.partner-right {
    min-width: 0;
}

/* Section Titles */
.partner-details-layout .section-title {
    font-size: 18px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #E2E8F0;
}

/* Form Groups */
.partner-details-layout .form-group {
    margin-bottom: 24px;
}

.partner-details-layout .form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.partner-details-layout .form-input,
.partner-details-layout .form-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-size: 15px;
    color: #0F172A;
    background: #ffffff;
    transition: all 0.2s ease;
}

.partner-details-layout .form-input:focus,
.partner-details-layout .form-textarea:focus {
    border-color: #66B3E3;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.partner-details-layout .form-textarea {
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}

/* Rating Slider */
.rating-slider-container {
    padding: 20px;
    background: #F8FAFC;
    border-radius: 10px;
    border: 1px solid #E2E8F0;
}

.rating-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none; 
    height: 6px;
    border-radius: 3px;
    background: #E2E8F0;
    outline: none;
    margin-bottom: 12px;
}

.rating-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #66B3E3;
    cursor: pointer;
    transition: all 0.2s;
}

.rating-slider::-webkit-slider-thumb:hover {
    background: #2563EB;
    transform: scale(1.15);
}

.rating-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #66B3E3;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.rating-slider::-moz-range-thumb:hover {
    background: #2563EB;
    transform: scale(1.15);
}

.rating-display {
    font-weight: 600;
    color: #1E293B;
    font-size: 15px;
    text-align: center;
}

.rating-scale {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #64748B;
    margin-top: 12px;
}

/* Conversations Header */
.conversations-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.conversations-header .section-title {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.conversations-header .btn {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* Conversations Scroll Area */
.conversations-scroll {
    max-height: 600px;
    overflow-y: auto;
    border: 2px solid #E2E8F0;
    background: #FAFBFC;
    border-radius: 12px;
    padding: 20px;
}

.conversations-scroll::-webkit-scrollbar {
    width: 8px;
}

.conversations-scroll::-webkit-scrollbar-track {
    background: #F1F5F9;
    border-radius: 4px;
}

.conversations-scroll::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}

.conversations-scroll::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}

/* Conversations Empty State */
.conversations-empty {
    text-align: center;
    padding: 60px 20px;
    color: #64748B;
}

.conversations-empty svg {
    opacity: 0.5;
}

/* Conversation Item */
.conversation-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.2s;
}

.conversation-item:last-child {
    margin-bottom: 0;
}

.conversation-item:hover {
    border-color: #66B3E3;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.conversation-date {
    min-width: 110px;
    padding-right: 20px;
    border-right: 2px solid #E2E8F0;
}

.conversation-date-day {
    font-size: 24px;
    font-weight: 700;
    color: #1E293B;
    line-height: 1;
}

.conversation-date-month {
    font-size: 12px;
    color: #64748B;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 4px;
}

.conversation-content {
    flex: 1;
}

.conversation-topic {
    font-weight: 600;
    color: #1E293B;
    font-size: 15px;
    margin-bottom: 8px;
}

.conversation-notes {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.conversation-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.conversation-actions button {
    padding: 6px 12px;
    font-size: 13px;
    border: 1px solid #CBD5E1;
    background: white;
    border-radius: 6px;
    color: #64748B;
    cursor: pointer;
    transition: all 0.2s;
}

.conversation-actions button:hover {
    border-color: #66B3E3;
    color: #66B3E3;
    background: #F0F9FF;
}

/* Add Conversation Modal */
.modal-conversation {
    width: 600px;
    max-width: 95%;
}

.modal-conversation .form-group {
    margin-bottom: 24px;
}

.modal-conversation .form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.modal-conversation .form-input,
.modal-conversation .form-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-size: 15px;
    color: #0F172A;
    background: #ffffff;
    transition: all 0.2s ease;
}

.modal-conversation .form-input:focus,
.modal-conversation .form-textarea:focus {
    border-color: #66B3E3;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.modal-conversation .form-textarea {
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}

/* Modal Footer */
.modal-partner-wide .modal-footer {
    padding: 20px 32px;
    border-top: 2px solid #E2E8F0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-partner-wide .btn {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .modal-partner-wide {
        width: 95%;
        max-width: 800px;
    }
    
    .partner-details-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .conversations-scroll {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .modal-partner-wide {
        width: 95%;
        max-width: 100%;
    }
    
    .modal-partner-wide .modal-body {
        padding: 24px;
    }
    
    .partner-details-layout {
        gap: 24px;
    }
    
    .partner-details-layout .form-group {
        margin-bottom: 20px;
    }
    
    .conversation-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .conversation-date {
        border-right: none;
        border-bottom: 2px solid #E2E8F0;
        padding-right: 0;
        padding-bottom: 12px;
        display: flex;
        align-items: baseline;
        gap: 8px;
    }
    
    .conversations-header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .conversations-header .btn {
        width: 100%;
    }
    
    .modal-partner-wide .modal-footer {
        padding: 16px 24px;
        flex-direction: column;
        gap: 12px;
    }
    
    .modal-partner-wide .modal-footer > * {
        width: 100%;
    }
    
    .modal-conversation {
        width: 95%;
    }
}
.v-group-card {
    margin-top: 16px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
    overflow: hidden;
  }
  
  .v-group-header {
    padding: 10px 16px;
    border-bottom: 1px solid #E2E8F0;
    background: #F8FAFC;
  }
  
  .v-status-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
  }
  
  /* Colors per status group */
  .v-status-pill-not_started { background:#E0F2FE; color:#66B3E3; }
  .v-status-pill-in_progress { background:#DCFCE7; color:#15803D; }
  .v-status-pill-review      { background:#FEF9C3; color:#92400E; }
  .v-status-pill-completed   { background:#E5E7EB; color:#4B5563; }
  
  .v-table {
    width: 100%;
  }
  
  .v-row {
    display: grid;
    grid-template-columns: 3fr 4fr 2fr 1.5fr;
    column-gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid #E5E7EB;
    font-size: 14px;
    align-items: center;
    cursor: pointer;
  }
  
  .v-row:last-child {
    border-bottom: none;
  }
  
  .v-row-header {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #64748B;
    background: #F9FAFB;
    cursor: default;
  }
  
  .v-row-new {
    color: #0EA5E9;
    font-weight: 500;
  }
  
  .v-row:hover:not(.v-row-header) {
    background: #F8FAFC;
  }
  
  .v-cell {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  /* status text colors in the Status column */
  .v-status-not_started { color:#66B3E3; font-weight:600; }
  .v-status-in_progress { color:#15803D; font-weight:600; }
  .v-status-review      { color:#92400E; font-weight:600; }
  .v-status-completed   { color:#4B5563; font-weight:600; }
  
  /* Force task name into a single line */
.v-cell-name.single-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Clean table look */
  .v-row {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1fr 1fr;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid #eef2f6;
    background: #ffffff;
    cursor: pointer;
  }
  
  .v-row:hover {
    background: #f4f7fa;
  }
  
  /* Header row */
  .v-row-header {
    background: #f7f9fc;
    font-weight: 600;
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    border-bottom: 1px solid #e5e7eb;
  }
  
  /* Group cards */
  .v-group-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    margin-bottom: 32px;
  }
  
  /* Status pill (in header only now) */
  .v-status-pill {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    color: white;
  }
  
  .v-status-pill-not_started {
    background: #66B3E3;
  }
  
  .v-status-pill-in_progress {
    background: #10b981;
  }
  
  .v-status-pill-review {
    background: #f59e0b;
  }
  
  .v-status-pill-completed {
    background: #6b7280;
  }
/* ============= VALIDATION CREATE MODAL TIP BOX ============= */

.validation-tip-box {
    display: none;               /* hidden by default */
    background: #f8fafc;
    border-radius: 8px;
    padding: 14px 16px;
    margin-top: 20px;
    font-size: 14px;
    color: #475569;
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }
  
  .validation-tip-icon {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.premium-badge {
    display: inline-block;
    background: linear-gradient(135deg, #66B3E3, #8B5CF6);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* ==========================================
   TOGGLE SWITCH
   ========================================== */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.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: #CBD5E1;
    transition: 0.3s;
    border-radius: 28px;
}

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

.toggle-switch input:checked + .toggle-slider {
    background-color: #66B3E3;
}

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

.toggle-switch input:disabled + .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}
/* ==========================================
   PROGRESS TRACKER
   ========================================== */
.progress-tracker-card,
.idea-progress-container {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin-bottom: 24px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.progress-percentage {
  font-size: 32px;
  font-weight: 700;
  color: #66B3E3;
  line-height: 1;
}

.progress-bar-container {
  height: 12px;
  background: #E2E8F0;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 24px;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #66B3E3, #8B5CF6);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.progress-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.progress-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #F8FAFC;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.2s;
}

.progress-step.complete {
  background: #F0FDF4;
  border-color: #10B981;
}

.progress-step.complete .step-icon {
  background: #10B981;
  color: white;
}

.step-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: #64748B;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 4px;
  font-size: 15px;
}

.step-description {
  font-size: 13px;
  color: #64748B;
  line-height: 1.5;
}

.progress-actions {
  border-top: 1px solid #E2E8F0;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .progress-header {
    flex-direction: column;
    gap: 12px;
  }
  
  .progress-percentage {
    font-size: 24px;
  }
  
  .progress-step {
    padding: 12px;
  }
}

/* ==========================================
   NOTIFICATION ICON & BADGE
   ========================================== */
.notification-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  background: #F8FAFC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.notification-icon:before {
    content: "";
    display: block;
    width: 20px;       /* adjust as needed */
    height: 20px;      /* adjust as needed */
    background-image: url("../images/icons/bell.png"); /* your file */
    background-size: contain;
    background-repeat: no-repeat;
  }
  

.notification-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #EF4444;
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  height: 18px;
  display: none;
  align-items: center;
  justify-content: center;
}

/* ==========================================
   TEAM CHAT PANEL
   ========================================== */
.team-chat-panel {
  position: fixed;
  right: -400px;
  top: 0;
  width: 400px;
  height: 100vh;
  background: white;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}

.team-chat-panel.open {
  right: 0;
}

.chat-header {
  padding: 20px;
  border-bottom: 2px solid #E2E8F0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F8FAFC;
}

.chat-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1E293B;
}

.close-chat-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #64748B;
  padding: 4px 8px;
  line-height: 1;
}

.close-chat-btn:hover {
  color: #1E293B;
}

.team-members-section {
  padding: 16px 20px;
  border-bottom: 1px solid #E2E8F0;
  background: #FAFBFC;
}

.team-members-section h4 {
  margin: 0 0 12px 0;
  font-size: 13px;
  font-weight: 600;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-member-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  position: relative;
}

.member-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-weight: 600;
    color: white;
  }
  
  .member-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 20px;
  bottom: 0;
  border: 2px solid white;
}

.status-indicator.online {
  background: #10B981;
}

.status-indicator.offline {
  background: #94A3B8;
}

.member-name {
  font-size: 13px;
  color: #1E293B;
  font-weight: 500;
}

.chat-messages-container {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  background: white;
}

#chat-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-message {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border-radius: 8px;
  background: #F1F5F9;
  max-width: 85%;
}

.chat-message.current-user {
  align-self: flex-end;
  background: #DBEAFE;
  margin-left: auto;
}

.message-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.message-header strong {
  font-size: 13px;
  color: #1E293B;
}

.message-time {
  font-size: 11px;
  color: #64748B;
}

.message-content {
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
  word-wrap: break-word;
}

.chat-input-container {
  padding: 16px 20px;
  border-top: 2px solid #E2E8F0;
  display: flex;
  gap: 8px;
  background: #F8FAFC;
}

#chat-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}

#chat-input:focus {
  border-color: #66B3E3;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#send-chat-btn {
  padding: 10px 20px;
  white-space: nowrap;
}


/* ==========================================
   PROGRESS TRACKER GRID LAYOUT
   ========================================== */
   .progress-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
  }
  
  .progress-step-card {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: start;
    transition: all 0.2s;
  }
  
  .progress-step-card.complete {
    background: #F0FDF4;
    border-color: #10B981;
  }
  
  .progress-step-card.incomplete {
    background: #F8FAFC;
    border-color: #E2E8F0;
  }
  
  .progress-step-card .step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
  }
  
  .progress-step-card.complete .step-icon {
    background: #10B981;
    color: white;
  }
  
  .progress-step-card.incomplete .step-icon {
    background: #E2E8F0;
    color: #94A3B8;
  }
  
  .progress-step-card .step-content {
    flex: 1;
    min-width: 0;
  }
  
  .progress-step-card .step-title {
    font-weight: 600;
    font-size: 14px;
    color: #1E293B;
    margin-bottom: 4px;
  }
  
  .progress-step-card .step-description {
    font-size: 12px;
    color: #64748B;
    line-height: 1.4;
  }
  
  /* Responsive: 2 columns on tablets */
  @media (max-width: 1024px) {
    .progress-steps-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Responsive: 1 column on mobile */
  @media (max-width: 640px) {
    .progress-steps-grid {
      grid-template-columns: 1fr;
    }
  }
/* Team Member Row Styles for Settings Page */
.team-member-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 8px;
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
}

.team-member-name {
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 4px;
}

.team-member-email {
  font-size: 13px;
  color: #64748B;
}
/* ========================================
   DASHBOARD - Modern Charts & KPIs
   ======================================== */

/* KPI Cards Grid */
.dashboard-kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.dashboard-kpi-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.dashboard-kpi-card .kpi-icon {
    font-size: 32px;
    flex-shrink: 0;
}
.icon-dashboard {
    width: 40px;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
    flex-shrink: 0;
}

.dashboard-kpi-card .kpi-content {
    flex: 1;
    min-width: 0;
}

.dashboard-kpi-card .kpi-label {
    font-size: 13px;
    color: #64748B;
    margin-bottom: 6px;
    font-weight: 500;
}

.dashboard-kpi-card .kpi-value {
    font-size: 28px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 4px;
    line-height: 1;
}

.dashboard-kpi-card .kpi-trend {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.kpi-trend.trend-up {
    color: #10B981;
}

.kpi-trend.trend-down {
    color: #EF4444;
}

.kpi-trend.trend-neutral {
    color: #64748B;
}

/* Charts Grid */
.dashboard-charts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.dashboard-chart-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.dashboard-chart-wide {
    grid-column: span 1;
}

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

.chart-title {
    font-size: 16px;
    font-weight: 600;
    color: #1E293B;
    margin: 0;
}

.chart-subtitle {
    font-size: 13px;
    color: #64748B;
    font-weight: 400;
}

.chart-controls {
    display: flex;
    gap: 8px;
}

.btn-chart-range {
    padding: 6px 12px;
    font-size: 12px;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    color: #64748B;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-chart-range:hover {
    background: #E2E8F0;
}

.btn-chart-range.active {
    background: #66B3E3;
    color: white;
    border-color: #66B3E3;
}

.chart-container {
    position: relative;
    height: 250px;
}

.chart-container-sm {
    height: 220px;
}

/* Bottom Grid */
.dashboard-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

/* Task Progress Bars */
.task-progress-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

.task-progress-label {
    font-size: 13px;
    color: #1E293B;
    font-weight: 500;
}

.task-progress-value {
    font-size: 13px;
    color: #64748B;
}

.task-progress-bar {
    height: 8px;
    background: #E2E8F0;
    border-radius: 4px;
    overflow: hidden;
}

.task-progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Activity Feed */
.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #F8FAFC;
    border-radius: 8px;
    border-left: 3px solid #66B3E3;
    transition: background 0.2s;
}

.activity-item:hover {
    background: #F1F5F9;
}

.activity-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.activity-icon.icon-idea { 
    background: #EFF6FF; 
    color: #66B3E3; 
}

.activity-icon.icon-interview { 
    background: #F0FDF4; 
    color: #10B981; 
}

.activity-icon.icon-task { 
    background: #FEF3C7; 
    color: #F59E0B; 
}

.activity-icon.icon-partner { 
    background: #F3E8FF; 
    color: #9333EA; 
}

.activity-content {
    flex: 1;
    min-width: 0;
}

.activity-title {
    font-size: 13px;
    color: #1E293B;
    font-weight: 500;
    margin-bottom: 2px;
}

.activity-meta {
    font-size: 12px;
    color: #64748B;
}

.activity-time {
    font-size: 11px;
    color: #94A3B8;
    margin-top: 4px;
}

/* Empty States */
.empty-state-sm {
    text-align: center;
    padding: 40px 20px;
    color: #94A3B8;
}

.empty-state-sm p {
    font-size: 14px;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .dashboard-charts-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-chart-wide {
        grid-column: span 1;
    }
    
    .dashboard-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-kpi-card {
        flex-direction: column;
        text-align: center;
    }
    
    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
/* Waitlist Modal */
.modal-md {
    max-width: 600px;
    width: 90%;
}

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

.form-group-full {
    grid-column: 1 / -1;
}

.form-input-compact {
    padding: 8px 12px;
    font-size: 14px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    color: #1E293B;
}

@media (max-width: 640px) {
    .waitlist-form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: 1;
    }
}
.badge-followup {
    background: #FFF3E0;
    color: #EF6C00;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 13px;
    display: inline-block;
}
/* Fix horizontal overflow */
html, body {
    overflow-x: hidden;
}

/* Ensure app container never exceeds screen width */
.app-container {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Prevent child elements from creating overflow */
.main-content, 
.sidebar, 
.screen-section {
    max-width: 100%;
}
/* Sidebar default is hidden on mobile */
@media (max-width: 1024px) {
    .sidebar {
        position: fixed;
        left: -260px;
        width: 240px;
        transition: left 0.28s ease;
        z-index: 9998;
    }

    .sidebar.mobile-open {
        left: 0;
    }
}


@media (max-width: 1024px) {
    .modal-idea-wide,
    .modal-mockup-wide {
        width: 95% !important;
        max-width: 95% !important;
    }
}
.premium-badge {
    display: none;
}

@media (max-width: 1024px) {
    .main-content {
        margin-left: 0;
        width: 100%;
        transform: none;
    }

    .main-content.mobile-shift {
        transform: translateX(240px);
    }
}
/* ==============================================
   PAGINATION STYLES
   ============================================== */
   .pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 20px 0;
}

.page-btn {
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    border: 1px solid #E2E8F0;
    background: white;
    color: #64748B;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.page-btn:hover:not(:disabled):not(.active) {
    border-color: #66B3E3;
    background: #F0F9FF;
    color: #66B3E3;
}

.page-btn.active {
    background: #66B3E3;
    border-color: #66B3E3;
    color: white;
    cursor: default;
}

.page-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.page-btn:active:not(:disabled):not(.active) {
    transform: scale(0.95);
}

.pagination-info {
    color: #64748B;
    font-size: 14px;
    text-align: center;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .pagination-container {
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .page-btn {
        min-width: 36px;
        height: 36px;
        padding: 6px 10px;
        font-size: 13px;
    }
}

/* Empty state */
#ideas-list:empty::after {
    content: 'No ideas yet. Click "Add New Idea" to get started.';
    display: block;
    text-align: center;
    padding: 60px 20px;
    color: #94A3B8;
    font-size: 16px;
}

.icon-img-settings {
    width: 50px;
    height: 50px;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
    flex-shrink: 0;
}
.email-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;
    padding: 20px;
}

.email-modal .modal-content {
    background: #fff;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* =======================
WAITLIST KPIS
/=========================*/
.insights-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.insight-card {
  flex: 1;
  min-width: 200px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.insight-number {
  font-size: 32px;
  font-weight: bold;
  margin-top: 10px;
  color: #1E293B;
}

.insights-charts {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.chart-block {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Container for the filter checkboxes */
.waitlist-filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
  }
  
  /* Align checkbox and label text nicely */
  .waitlist-filter-item {
    display: flex;
    align-items: center;
    gap: 8px;       /* space between checkbox and text */
    font-size: 14px;
    color: #334155; /* slate-700 tone */
  }
  
  /* Remove the huge default left margin Safari/Chrome adds */
  .waitlist-filter-item input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
  }
  .btn.disabled,
.btn:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}
/* ============================================
   IDEAS SECTION - FILTER LAYOUT FIX
   Match the Interview Tracker layout structure
   ============================================ */

/* Ideas page main container */
.ideas-page,
.ideas-container {
    padding: 20px;
}

/* Ideas filter section wrapper */
.ideas-filters,
.ideas-controls {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

/* Add New Idea button container */
.ideas-action-button,
.add-idea-container {
    display: flex;
    width: 100%;
}

/* Add New Idea button */
.btn-add-idea,
.add-idea-btn,
button.btn-add-new-idea {
    background: #17a2b8; /* Teal color matching your screenshot */
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-add-idea:hover {
    background: #138496;
}

/* Status filters container (All, Active, Completed) */
.ideas-status-filters,
.status-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

/* Individual status filter button */
.btn-status-filter,
.ideas-status-btn {
    flex: 1;
    min-width: 100px;
    padding: 12px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-status-filter:hover {
    border-color: #17a2b8;
    color: #17a2b8;
}

.btn-status-filter.active {
    background: #e8f4f8;
    border-color: #17a2b8;
    color: #17a2b8;
}

/* Sort filters container (Oldest First, Newest First) */
.ideas-sort-filters,
.sort-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

/* Individual sort filter button */
.btn-sort-filter,
.ideas-sort-btn {
    flex: 1;
    min-width: 140px;
    padding: 12px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-sort-filter:hover {
    border-color: #17a2b8;
    color: #17a2b8;
}

.btn-sort-filter.active {
    background: #e8f4f8;
    border-color: #17a2b8;
    color: #17a2b8;
}

/* ============================================
   MOBILE RESPONSIVE - IDEAS SECTION
   ============================================ */

@media (max-width: 768px) {
    .ideas-page,
    .ideas-container {
        padding: 16px;
    }
    
    .ideas-filters,
    .ideas-controls {
        gap: 12px;
    }
    
    /* Add New Idea button - full width on mobile */
    .btn-add-idea,
    .add-idea-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    /* Status filters - stack or shrink on mobile */
    .ideas-status-filters,
    .status-filter-group {
        gap: 8px;
    }
    
    .btn-status-filter,
    .ideas-status-btn {
        flex: 1;
        min-width: 0;
        padding: 12px 8px;
        font-size: 14px;
    }
    
    /* Sort filters - full width each on smaller screens */
    .ideas-sort-filters,
    .sort-filter-group {
        gap: 8px;
    }
    
    .btn-sort-filter,
    .ideas-sort-btn {
        flex: 1;
        min-width: 0;
        padding: 12px 12px;
        font-size: 14px;
    }
}

@media (max-width: 390px) {
    /* iPhone 12 Pro specific adjustments */
    .btn-status-filter,
    .ideas-status-btn {
        font-size: 13px;
        padding: 10px 6px;
    }
    
    .btn-sort-filter,
    .ideas-sort-btn {
        font-size: 13px;
        padding: 10px 8px;
    }
}

/* ============================================
   VALIDATION TASKS SECTION
   ============================================ */

/* Validation page main container */
.validation-page,
.validation-container {
    padding: 20px;
}

/* Validation filter section wrapper */
.validation-filters,
.validation-controls {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

/* Add Validation Task button container */
.validation-action-button {
    display: flex;
    width: 100%;
}

/* Add Validation Task button */
.btn-add-validation {
}

.btn-add-validation:hover {
    background: #138496;
}

/* Validation filter controls container */
.validation-filter-controls {
    display: flex;
    gap: 12px;
    width: 100%;
    flex-wrap: wrap;
}

/* Priority filter dropdown */
.validation-filter-controls select,
#validation-filter-priority {
    flex: 1;
    min-width: 180px;
    padding: 12px 16px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.validation-filter-controls select:hover,
#validation-filter-priority:hover {
    border-color: #17a2b8;
}

.validation-filter-controls select:focus,
#validation-filter-priority:focus {
    outline: none;
    border-color: #17a2b8;
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.1);
}

/* ============================================
   VALIDATION TASKS - MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .validation-page,
    .validation-container {
        padding: 16px;
    }
    
    .validation-filters,
    .validation-controls {
        gap: 12px;
    }
    
    /* Add Validation Task button - full width on mobile */
    .btn-add-validation,
    button#btn-add-validation {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    /* Filter controls - stack vertically */
    .validation-filter-controls {
        flex-direction: column;
        gap: 10px;
    }
    
    .validation-filter-controls select,
    #validation-filter-priority {
        width: 100%;
        min-width: 100%;
        font-size: 14px;
        padding: 12px 16px;
    }
}

@media (max-width: 390px) {
    /* iPhone 12 Pro specific */
    .btn-add-validation {
        font-size: 14px;
        padding: 12px 18px;
    }
    
    #validation-filter-priority {
        font-size: 13px;
        padding: 10px 14px;
    }
}

/* ============================================
   WAITLIST SECTION
   ============================================ */

/* Waitlist page main container */
.waitlist-page,
.waitlist-container {
    padding: 20px;
}

/* Waitlist filter section wrapper */
.waitlist-filters,
.waitlist-controls {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

/* Primary actions container (Add to Waitlist, Email Waitlist) */
.waitlist-primary-actions {
    display: flex;
    gap: 12px;
    width: 100%;
    flex-wrap: wrap;
}

/* Secondary actions container (Sign-up Form, Insights, Export CSV) */
.waitlist-secondary-actions {
    display: flex;
    gap: 12px;
    width: 100%;
    flex-wrap: wrap;
}

/* Waitlist action buttons */
.btn-waitlist-action {
    background: #17a2b8; /* Teal color */
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    flex: 1;
    min-width: 160px;
}

.btn-waitlist-action:hover {
    background: #138496;
}

/* Export CSV button (secondary style) */
.btn-waitlist-export {
    background: white;
    color: #666;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 160px;
}

.btn-waitlist-export:hover {
    border-color: #17a2b8;
    color: #17a2b8;
}

.export-icon {
    font-size: 18px;
}

/* Waitlist filter controls container */
.waitlist-filter-controls {
    display: flex;
    gap: 12px;
    width: 100%;
    flex-wrap: wrap;
}

/* Filter by Ideas dropdown */
.waitlist-filter-controls select,
#waitlist-idea-filter {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.waitlist-filter-controls select:hover,
#waitlist-idea-filter:hover {
    border-color: #17a2b8;
}

.waitlist-filter-controls select:focus,
#waitlist-idea-filter:focus {
    outline: none;
    border-color: #17a2b8;
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.1);
}

/* ============================================
   WAITLIST - MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .waitlist-page,
    .waitlist-container {
        padding: 16px;
    }
    
    .waitlist-filters,
    .waitlist-controls {
        gap: 12px;
    }
    
    /* Primary actions - stack vertically on mobile */
    .waitlist-primary-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .waitlist-primary-actions .btn-waitlist-action {
        width: 100%;
        min-width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    /* Secondary actions - stack vertically on mobile */
    .waitlist-secondary-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .waitlist-secondary-actions .btn-waitlist-action,
    .waitlist-secondary-actions .btn-waitlist-export {
        width: 100%;
        min-width: 100%;
        padding: 14px 20px;
        font-size: 15px;
        justify-content: center;
    }
    
    /* Filter controls - full width */
    .waitlist-filter-controls {
        flex-direction: column;
        gap: 10px;
    }
    
    .waitlist-filter-controls select,
    #waitlist-idea-filter {
        width: 100%;
        min-width: 100%;
        font-size: 14px;
        padding: 12px 16px;
    }
}

@media (max-width: 390px) {
    /* iPhone 12 Pro specific */
    .btn-waitlist-action,
    .btn-waitlist-export {
        font-size: 14px;
        padding: 12px 18px;
    }
    
    #waitlist-idea-filter {
        font-size: 13px;
        padding: 10px 14px;
    }
}

.password-rules{
    font-size: 12px ;
}