@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #6366f1;
    --secondary-color: #4f46e5;
    --background-color: #f3f4f6;
    --card-bg: #ffffff;
    --text-color: #1f2937;
    --border-radius: 12px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
}

.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background-color: var(--card-bg);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 8px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
}

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

.form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.alert {
    border-radius: 8px;
    border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

.dashboard-header {
    margin-bottom: 2rem;
}

.badge-date {
    background-color: #e0e7ff;
    color: #4338ca;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.kanban-column {
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 1rem;
    min-height: 70vh;
    border: 1px dashed #ced4da;
    margin-bottom: 2rem;
}/* TipTap ProseMirror Styles */
.ProseMirror {
    outline: none;
}

.ProseMirror p.is-editor-empty:first-child::before {
    color: #adb5bd;
    content: attr(data-placeholder);
    float: left;
    height: 0;
    pointer-events: none;
}

.ProseMirror ul {
    list-style-type: disc !important;
    padding-left: 1.5em !important;
}

.ProseMirror ol {
    list-style-type: decimal !important;
    padding-left: 1.5em !important;
}

.ProseMirror h1 {
    font-size: 1.5em;
    /* 24px */
    font-weight: bold;
    margin-top: 1em;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

.ProseMirror h2 {
    font-size: 1.25em;
    /* 20px */
    font-weight: bold;
    margin-top: 1em;
    margin-bottom: 0.5em;
    line-height: 1.3;
}

.ProseMirror blockquote {
    border-left: 3px solid #ddd;
    padding-left: 1em;
    margin-left: 0;
    margin-right: 0;
    color: #555;
    font-style: italic;
}

.ProseMirror a {
    color: #1976d2;
    text-decoration: underline;
    cursor: pointer;
}

.ProseMirror p {
    margin-bottom: 0.75em;
    line-height: 1.6;
}