/**
 * TaskBoard Styles
 * Modern, letisztult design dark/light mode-dal
 */

/* ===== CSS Variables ===== */
:root {
    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
    
    /* Accent Colors */
    --color-primary: #6366f1;
    --color-primary-hover: #4f46e5;
    --color-secondary: #ec4899;
    --color-success: #22c55e;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-danger-hover: #dc2626;
}

/* Light Theme */
[data-theme="light"] {
    --color-bg: #fafafa;
    --color-bg-elevated: #ffffff;
    --color-bg-hover: #f4f4f5;
    --color-bg-active: #e4e4e7;
    --color-bg-card: #ffffff;
    --color-bg-input: #ffffff;
    --color-bg-modal: #ffffff;
    
    --color-border: #e4e4e7;
    --color-border-focus: #a1a1aa;
    
    --color-text: #18181b;
    --color-text-secondary: #71717a;
    --color-text-muted: #a1a1aa;
    --color-text-inverse: #ffffff;
    
    --color-column-backlog: #f8fafc;
    --color-column-urgent: #fef2f2;
    
    --gradient-header: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
}

/* Dark Theme */
[data-theme="dark"] {
    --color-bg: #09090b;
    --color-bg-elevated: #18181b;
    --color-bg-hover: #27272a;
    --color-bg-active: #3f3f46;
    --color-bg-card: #1c1c1f;
    --color-bg-input: #27272a;
    --color-bg-modal: #18181b;
    
    --color-border: #27272a;
    --color-border-focus: #52525b;
    
    --color-text: #fafafa;
    --color-text-secondary: #a1a1aa;
    --color-text-muted: #71717a;
    --color-text-inverse: #18181b;
    
    --color-column-backlog: #0c0c0e;
    --color-column-urgent: #1a0a0a;
    
    --gradient-header: linear-gradient(135deg, #4f46e5 0%, #db2777 100%);
    
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-card-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    transition: background-color var(--transition-slow), color var(--transition-slow);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-hover);
}

/* ===== Form Elements ===== */
input, textarea, select {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background-color: var(--color-bg-input);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    transition: all var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

input::placeholder, textarea::placeholder {
    color: var(--color-text-muted);
}

textarea {
    resize: vertical;
    min-height: 80px;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xs);
}

.required {
    color: var(--color-danger);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

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

.btn-primary {
    background: var(--gradient-header);
    color: white;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

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

.btn-ghost:hover:not(:disabled) {
    background: var(--color-bg-hover);
    color: var(--color-text);
}

.btn-danger {
    background: var(--color-danger);
    color: white;
}

.btn-danger:hover:not(:disabled) {
    background: var(--color-danger-hover);
}

.btn-icon {
    padding: var(--space-sm);
    border-radius: var(--radius-md);
}

.btn-sm {
    font-size: 0.8125rem;
    padding: var(--space-xs) var(--space-sm);
}

.btn-xs {
    padding: 4px;
    border-radius: var(--radius-sm);
}

.btn-xs svg {
    width: 14px;
    height: 14px;
}

/* ===== Login Page ===== */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: var(--space-lg);
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.login-container {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    max-width: 900px;
    width: 100%;
}

.login-card {
    flex: 1;
    max-width: 400px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.6s ease;
}

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

.login-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.logo {
    display: inline-flex;
    margin-bottom: var(--space-md);
}

.login-header h1 {
    font-size: 1.75rem;
    margin-bottom: var(--space-xs);
    background: var(--gradient-header);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.btn-login {
    margin-top: var(--space-sm);
    padding: var(--space-md);
    font-size: 1rem;
}

.error-message {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-md);
    color: var(--color-danger);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.login-footer {
    display: flex;
    justify-content: center;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

/* Theme Toggle */
.theme-toggle {
    position: relative;
    background: var(--color-bg-hover);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: var(--space-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.theme-toggle:hover {
    background: var(--color-bg-active);
}

.sun-icon, .moon-icon {
    transition: all var(--transition-fast);
}

[data-theme="dark"] .sun-icon {
    display: none;
}

[data-theme="light"] .moon-icon {
    display: none;
}

/* Login Decoration */
.login-decoration {
    flex: 1;
    position: relative;
    height: 400px;
    display: none;
}

@media (min-width: 768px) {
    .login-decoration {
        display: block;
    }
}

.floating-card {
    position: absolute;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20%;
    left: 10%;
    width: 140px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 40%;
    right: 5%;
    width: 160px;
    animation-delay: -2s;
}

.floating-card.card-3 {
    bottom: 15%;
    left: 30%;
    width: 120px;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.mini-task {
    height: 12px;
    background: var(--color-bg-hover);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
}

.mini-task:last-child {
    margin-bottom: 0;
    width: 70%;
}

/* ===== App Page ===== */
.app-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* App Header */
.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    background: var(--color-bg-elevated);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.logo-small {
    display: flex;
}

.app-title {
    font-size: 1.25rem;
    background: var(--gradient-header);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-right {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-left: var(--space-md);
    margin-left: var(--space-sm);
    border-left: 1px solid var(--color-border);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.user-name {
    font-weight: 500;
    font-size: 0.9375rem;
    display: none;
}

@media (min-width: 640px) {
    .user-name {
        display: block;
    }
}

/* ===== Board ===== */
.board-container {
    flex: 1;
    padding: var(--space-lg);
    overflow-x: auto;
}

.board {
    display: flex;
    gap: var(--space-lg);
    min-height: calc(100vh - 150px);
}

/* Columns */
.column {
    flex: 1;
    min-width: 320px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.column[data-column="backlog"] {
    background: var(--color-column-backlog);
}

.column[data-column="urgent"] {
    background: var(--color-column-urgent);
}

.column-header {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.column-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xs);
}

.column-icon {
    font-size: 1.25rem;
}

.column-title h2 {
    font-size: 1.125rem;
    font-weight: 600;
}

.task-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 var(--space-sm);
    background: var(--color-bg-hover);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.column-subtitle {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* Task List */
.task-list {
    flex: 1;
    padding: var(--space-md);
    overflow-y: auto;
    min-height: 200px;
}

.task-list.drag-over {
    background: rgba(99, 102, 241, 0.05);
}

/* Task Card */
.task-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
    cursor: grab;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-card);
}

.task-card:hover {
    border-color: var(--color-border-focus);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.task-card:active {
    cursor: grabbing;
}

.task-card.dragging {
    opacity: 0.5;
    transform: rotate(3deg);
}

.task-card.drag-ghost {
    opacity: 0.8;
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.task-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.task-title {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
    word-break: break-word;
}

.task-actions {
    display: flex;
    gap: 2px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.task-card:hover .task-actions {
    opacity: 1;
}

.task-description {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: var(--space-md);
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.task-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-border);
}

.task-assignee {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

.task-assignee.unassigned {
    color: var(--color-text-muted);
}

.assignee-avatar {
    width: 22px;
    height: 22px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.6875rem;
    font-weight: 600;
    background: var(--color-text-muted);
}

.task-date {
    font-size: 0.6875rem;
    color: var(--color-text-muted);
}

/* Add Task Button */
.btn-add-task {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: calc(100% - var(--space-lg));
    margin: var(--space-sm) var(--space-md) var(--space-md);
    padding: var(--space-md);
    background: transparent;
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-lg);
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-add-task:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(99, 102, 241, 0.05);
}

/* ===== Modals ===== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.modal.active {
    display: flex;
    animation: fadeIn var(--transition-fast);
}

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

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--color-bg-modal);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    animation: slideUp var(--transition-base);
}

.modal-small {
    max-width: 400px;
}

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

.modal-header h2 {
    font-size: 1.25rem;
}

.modal-body {
    padding: var(--space-lg);
}

.modal-body p {
    margin-bottom: var(--space-sm);
}

.text-muted {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

#task-form {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-sm);
    padding: var(--space-lg);
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-hover);
    margin-top: var(--space-md);
}

/* Settings Specific */
.settings-section {
    margin-bottom: var(--space-lg);
}

.settings-section h3 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.settings-description {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

#settings-form {
    padding: var(--space-lg);
}

/* Checkbox */
.form-checkbox {
    margin-top: var(--space-md);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.9375rem;
    color: var(--color-text);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.checkbox-label input:checked + .checkbox-custom {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

/* Theme Selector */
.theme-selector {
    display: flex;
    gap: var(--space-sm);
}

.theme-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--color-bg-input);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.theme-option:hover {
    border-color: var(--color-border-focus);
}

[data-theme="light"] .theme-option[data-theme="light"],
[data-theme="dark"] .theme-option[data-theme="dark"] {
    border-color: var(--color-primary);
    background: rgba(99, 102, 241, 0.1);
    color: var(--color-primary);
}

/* ===== Toast Notifications ===== */
#toast-container {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.toast {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: slideInRight var(--transition-base);
    max-width: 350px;
}

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

.toast.success {
    border-left: 4px solid var(--color-success);
}

.toast.error {
    border-left: 4px solid var(--color-danger);
}

.toast.info {
    border-left: 4px solid var(--color-primary);
}

.toast-message {
    font-size: 0.875rem;
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
    .board {
        flex-direction: column;
    }
    
    .column {
        min-width: 100%;
        max-width: 100%;
    }
    
    .app-header {
        padding: var(--space-sm) var(--space-md);
    }
    
    .app-title {
        display: none;
    }
    
    .board-container {
        padding: var(--space-md);
    }
}

/* ===== Drop Zone Indicator ===== */
.drop-indicator {
    height: 4px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    margin: var(--space-xs) 0;
    animation: pulse 1s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-border-focus);
}

/* ===== Selection ===== */
::selection {
    background: rgba(99, 102, 241, 0.3);
}

/* ===== View Task Modal ===== */
.view-task-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.view-task-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.view-task-section label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    font-weight: 600;
}

.view-task-title {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-display);
    color: var(--color-text);
    line-height: 1.4;
}

.view-task-description {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
}

.view-task-description.empty {
    font-style: italic;
    color: var(--color-text-muted);
}

.view-task-row {
    display: flex;
    gap: var(--space-xl);
}

.view-task-row .view-task-section {
    flex: 1;
}

.view-task-assignee {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.view-task-assignee .assignee-avatar {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
}

.view-task-assignee span {
    font-weight: 500;
    color: var(--color-text);
}

.view-task-assignee.unassigned span {
    color: var(--color-text-muted);
    font-style: italic;
}

.view-task-column {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-bg-hover);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    width: fit-content;
}

.view-task-date {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

/* Task card clickable */
.task-card {
    cursor: pointer;
}

.task-card .task-actions {
    position: relative;
    z-index: 10;
}
