:root {
    /* Updated primary color to a vibrant blue from style.css (#1a73e8) */
    --primary-color: #1a73e8;
}

/* Set base HTML/Body to 100% height and use flex for full-screen layout */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Body styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6;
    display: flex;
    flex-direction: column;
}

/* Main application container */
#app-container {
    flex: 1; 
    min-height: 0; /* Important for flex children */
}

/* Kanban columns scrollbar */
.kanban-column {
    max-height: 100%; 
    overflow-y: auto;
}
.kanban-column::-webkit-scrollbar {
    width: 6px;
}
.kanban-column::-webkit-scrollbar-thumb {
    background-color: #d1d5db;
    border-radius: 3px;
}

/* Task cards */
.task-card {
    cursor: grab;
    transition: transform 0.2s, box-shadow 0.2s;
}
.task-card:active {
    cursor: grabbing;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: scale(1.02);
}
.drag-over {
    border: 2px dashed var(--primary-color);
    background-color: var(--primary-light);
    border-radius: 0.5rem;
}

/* Project item active styles */
.project-item.active {
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-right: 4px solid var(--primary-color);
    font-weight: 600;
}

/* Status badge colors for CRM */
.badge-lead { background-color: #bfdbfe; color: #1e40af; }
.badge-contacted { background-color: #fde68a; color: #a16207; }
.badge-proposalsent { background-color: #fed7aa; color: #ea580c; }
.badge-closed-won { background-color: #a7f3d0; color: #065f46; }
.badge-closed-lost { background-color: #fca5a5; color: #b91c1c; }

/* Status badge colors for requirements */
.badge-draft { background-color: #fca5a5; color: #991b1b; }
.badge-approved { background-color: #fde68a; color: #a16207; }
.badge-indevelopment { background-color: #bfdbfe; color: #1e40af; }
.badge-testing { background-color: #a7f3d0; color: #065f46; }
.badge-deployed { background-color: #c4b5fd; color: #5b21b6; }

/* Status badges from tasks palette */
.badge-idea { background-color: #ffe0b2; color: #e65100; }
.badge-todo { background-color: #eef6ff; color: #1a73e8; }
.badge-in-progress { background-color: #b0c4de; color: #00263d; }
.badge-in-testing { background-color: #d0f0c0; color: #38761d; }
.badge-done { background-color: #f9f9f9; color: #374151; }

/* Footer styles */
footer {
    padding: 1rem;
    background-color: #f4f4f4;
    text-align: center;
}

/* Modal overlay and content */
.modal-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}
.modal-content-container {
    transition: all 0.3s ease-in-out;
}

/* Consent banner modal 
#consent-banner {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
} */
 /* Consent banner modal */
#consent-banner {
    /* Keep only z-index or other non-Tailwind rules */
    z-index: 1050;
}