/**
 * Task & Sprint UI Enhancement Styles
 * Modern design system with glassmorphism, gradients, and micro-animations
 */

/* ============================================
   DESIGN TOKENS (CSS Custom Properties)
   ============================================ */
:root {
    /* Status Colors */
    --status-todo: #6c757d;
    --status-todo-light: rgba(108, 117, 125, 0.15);
    --status-in-progress: #0d6efd;
    --status-in-progress-light: rgba(13, 110, 253, 0.15);
    --status-in-review: #ffc107;
    --status-in-review-light: rgba(255, 193, 7, 0.15);
    --status-completed: #198754;
    --status-completed-light: rgba(25, 135, 84, 0.15);
    --status-cancelled: #dc3545;
    --status-cancelled-light: rgba(220, 53, 69, 0.15);

    /* Priority Colors */
    --priority-low: #6c757d;
    --priority-low-gradient: linear-gradient(135deg, #6c757d 0%, #868e96 100%);
    --priority-medium: #0dcaf0;
    --priority-medium-gradient: linear-gradient(135deg, #0dcaf0 0%, #3dd5f3 100%);
    --priority-high: #fd7e14;
    --priority-high-gradient: linear-gradient(135deg, #fd7e14 0%, #ffa94d 100%);
    --priority-urgent: #dc3545;
    --priority-urgent-gradient: linear-gradient(135deg, #dc3545 0%, #e35d6a 100%);

    /* Task Type Colors */
    --type-task: #0d6efd;
    --type-requirement: #6f42c1;
    --type-bug: #dc3545;

    /* Sipo Brand */
    --sipo-primary: #FF6B35;
    --sipo-secondary: #F7931E;
    --sipo-gradient: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);

    /* Glassmorphism Effects */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-bg-light: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 6px 25px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 12px 35px rgba(0, 0, 0, 0.15);
    --shadow-glow-primary: 0 0 20px rgba(13, 110, 253, 0.3);
    --shadow-glow-success: 0 0 20px rgba(25, 135, 84, 0.3);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 50px;
}

/* ============================================
   GLASSMORPHISM COMPONENTS
   ============================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
}

.glass-card-light {
    background: var(--glass-bg-light);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
}

/* ============================================
   KANBAN BOARD STYLES
   ============================================ */

/* Kanban Column Wrapper */
.kanban-column-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Column Headers with Gradient */
.kanban-column-header {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: white;
    position: relative;
    overflow: hidden;
}

.kanban-column-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.kanban-header-todo {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
}

.kanban-header-in-progress {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

.kanban-header-in-review {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #212529;
}

.kanban-header-completed {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
}

/* Column Count Badge */
.kanban-count-badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
    transition: var(--transition-normal);
}

.kanban-count-badge.updated {
    animation: pulse-badge 0.5s ease;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Kanban Column Body */
.kanban-column-body {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 0.5rem;
    min-height: 400px;
    border: 1px solid #e9ecef;
    border-top: none;
}

/* Enhanced Kanban Card */
.kanban-card-enhanced {
    background: white;
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid #e9ecef;
    border-left: 4px solid var(--priority-medium);
    box-shadow: var(--shadow-soft);
    cursor: grab;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.kanban-card-enhanced:hover {
    transform: translateY(-2px) scale(1.005);
    box-shadow: var(--shadow-hover);
    border-color: #dee2e6;
}

.kanban-card-enhanced:active {
    cursor: grabbing;
    transform: scale(1.02);
    box-shadow: var(--shadow-hover), var(--shadow-glow-primary);
}

/* Priority Border Colors */
.kanban-card-enhanced.priority-low {
    border-left-color: var(--priority-low);
}

.kanban-card-enhanced.priority-medium {
    border-left-color: var(--priority-medium);
}

.kanban-card-enhanced.priority-high {
    border-left-color: var(--priority-high);
}

.kanban-card-enhanced.priority-urgent {
    border-left-color: var(--priority-urgent);
}

/* Card Title */
.kanban-card-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #212529;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}

.kanban-card-enhanced:hover .kanban-card-title {
    color: var(--sipo-primary);
}

/* Quick Actions Overlay */
.kanban-card-actions {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.95) 30%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    padding-right: 0.5rem;
}

.kanban-card-enhanced:hover .kanban-card-actions {
    opacity: 1;
    transform: translateX(0);
}

.kanban-action-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.75rem;
}

.kanban-action-btn:hover {
    transform: scale(1.15);
}

.kanban-action-btn.play {
    color: var(--status-in-progress);
}

.kanban-action-btn.check {
    color: var(--status-completed);
}

.kanban-action-btn.eye {
    color: var(--type-requirement);
}

/* Drag Ghost Styles */
.sortable-ghost {
    opacity: 0.4;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%) !important;
    border: 2px dashed #adb5bd !important;
    border-left-width: 4px !important;
}

.sortable-drag {
    opacity: 1;
    transform: rotate(2deg);
    box-shadow: var(--shadow-hover), 0 0 30px rgba(13, 110, 253, 0.2) !important;
}

/* Drop Zone Highlight */
.kanban-column-body.drag-over {
    background: linear-gradient(180deg, rgba(13, 110, 253, 0.05) 0%, rgba(13, 110, 253, 0.02) 100%);
    border-color: rgba(13, 110, 253, 0.3);
}

/* ============================================
   ENHANCED BADGES
   ============================================ */
.badge-gradient {
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.badge-gradient.type-task {
    background: linear-gradient(135deg, #0d6efd 0%, #3d8bfd 100%);
    color: white;
}

.badge-gradient.type-requirement {
    background: linear-gradient(135deg, #6f42c1 0%, #8b5cf6 100%);
    color: white;
}

.badge-gradient.type-bug {
    background: linear-gradient(135deg, #dc3545 0%, #e35d6a 100%);
    color: white;
}

.badge-gradient.priority-low {
    background: var(--priority-low-gradient);
    color: white;
}

.badge-gradient.priority-medium {
    background: var(--priority-medium-gradient);
    color: #212529;
}

.badge-gradient.priority-high {
    background: var(--priority-high-gradient);
    color: white;
}

.badge-gradient.priority-urgent {
    background: var(--priority-urgent-gradient);
    color: white;
}

/* ============================================
   STATISTICS CARDS
   ============================================ */
.stat-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--sipo-gradient);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.stat-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.stat-card-icon.todo {
    background: var(--status-todo-light);
    color: var(--status-todo);
}

.stat-card-icon.in-progress {
    background: var(--status-in-progress-light);
    color: var(--status-in-progress);
}

.stat-card-icon.completed {
    background: var(--status-completed-light);
    color: var(--status-completed);
}

.stat-card-icon.overdue {
    background: var(--status-cancelled-light);
    color: var(--status-cancelled);
}

.stat-card-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.2;
}

.stat-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
}

/* Animated Counter */
.animate-count {
    animation: countUp 0.5s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   MODERN FILTER PILLS
   ============================================ */
.filter-pills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.filter-pill {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid #dee2e6;
    background: white;
    font-size: 0.85rem;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-pill:hover {
    border-color: var(--sipo-primary);
    color: var(--sipo-primary);
    background: rgba(255, 107, 53, 0.05);
}

.filter-pill.active {
    background: var(--sipo-gradient);
    color: white;
    border-color: transparent;
}

.filter-pill .count {
    background: rgba(0, 0, 0, 0.1);
    padding: 0.1rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
}

.filter-pill.active .count {
    background: rgba(255, 255, 255, 0.25);
}

/* ============================================
   ENHANCED TABLE STYLES
   ============================================ */
.modern-table {
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}

.modern-table thead th {
    background: #f8f9fa;
    border: none;
    padding: 1rem;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
}

.modern-table thead th:first-child {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.modern-table thead th:last-child {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.modern-table tbody tr {
    background: white;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.modern-table tbody tr:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.modern-table tbody td {
    padding: 1rem;
    border: none;
    vertical-align: middle;
}

.modern-table tbody td:first-child {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.modern-table tbody td:last-child {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ============================================
   TASK DETAIL PAGE STYLES
   ============================================ */

/* Modern Header */
.task-detail-header {
    background: var(--sipo-gradient);
    border-radius: var(--radius-xl);
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.task-detail-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    transform: rotate(15deg);
}

.task-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Modern Tabs */
.modern-tabs {
    display: flex;
    gap: 0.25rem;
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.modern-tab {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    border: none;
    background: transparent;
    font-weight: 500;
    color: #6c757d;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modern-tab:hover {
    color: #212529;
    background: rgba(0, 0, 0, 0.05);
}

.modern-tab.active {
    background: white;
    color: var(--sipo-primary);
    box-shadow: var(--shadow-soft);
}

.modern-tab .badge {
    background: #e9ecef;
    color: #495057;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-full);
}

.modern-tab.active .badge {
    background: var(--sipo-gradient);
    color: white;
}

/* Tab Content */
.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

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

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Info Cards */
.info-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid #f0f0f0;
}

.info-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card-value {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
}

/* Timeline Styles */
.timeline-modern {
    position: relative;
    padding-left: 2rem;
}

.timeline-modern::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--sipo-primary) 0%, var(--sipo-secondary) 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    background: white;
    border: 3px solid var(--sipo-primary);
    border-radius: 50%;
    z-index: 1;
}

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

/* Chat-style Comments */
.comment-bubble {
    background: #f8f9fa;
    border-radius: var(--radius-lg);
    border-top-left-radius: 4px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    position: relative;
}

.comment-bubble.own {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: 4px;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--sipo-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
}

.comment-author {
    font-weight: 600;
    color: #212529;
}

.comment-time {
    font-size: 0.75rem;
    color: #6c757d;
}

/* ============================================
   SPRINT PAGE STYLES
   ============================================ */

/* Sprint Card Enhanced */
.sprint-card-enhanced {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.sprint-card-enhanced:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.sprint-card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.sprint-card-body {
    padding: 1.5rem;
}

/* Circular Progress */
.progress-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: conic-gradient(var(--status-completed) calc(var(--progress) * 1%),
            #e9ecef calc(var(--progress) * 1%));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.progress-circle::before {
    content: '';
    position: absolute;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
}

.progress-circle-value {
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--status-completed);
}

/* Sprint Status Badges */
.sprint-status-badge {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sprint-status-badge.active {
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.15) 0%, rgba(25, 135, 84, 0.1) 100%);
    color: var(--status-completed);
    border: 1px solid rgba(25, 135, 84, 0.3);
}

.sprint-status-badge.planning {
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.15) 0%, rgba(13, 202, 240, 0.1) 100%);
    color: #055160;
    border: 1px solid rgba(13, 202, 240, 0.3);
}

.sprint-status-badge.completed {
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.15) 0%, rgba(108, 117, 125, 0.1) 100%);
    color: #495057;
    border: 1px solid rgba(108, 117, 125, 0.3);
}

/* Sprint Hero Header */
.sprint-hero {
    background: var(--sipo-gradient);
    border-radius: var(--radius-xl);
    padding: 2rem 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.sprint-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    transform: rotate(15deg);
}

/* ============================================
   EMPTY STATES
   ============================================ */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #adb5bd;
}

.empty-state-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.empty-state-text {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

/* ============================================
   FLOATING ACTION BUTTON
   ============================================ */
.fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--sipo-gradient);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 1000;
}

.fab:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.5);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-modern {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #212529;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 9999;
}

.toast-modern.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-modern.success {
    background: linear-gradient(135deg, #198754 0%, #157347 100%);
}

.toast-modern.error {
    background: linear-gradient(135deg, #dc3545 0%, #bb2d3b 100%);
}

/* ============================================
   AVATAR STACK
   ============================================ */
.avatar-stack {
    display: flex;
}

.avatar-stack .avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--sipo-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
    border: 2px solid white;
    margin-left: -8px;
    transition: var(--transition-fast);
}

.avatar-stack .avatar:first-child {
    margin-left: 0;
}

.avatar-stack .avatar:hover {
    transform: translateY(-3px);
    z-index: 2;
}

.avatar-stack .avatar.more {
    background: #6c757d;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .kanban-column-header {
        padding: 0.75rem 1rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-card-value {
        font-size: 1.5rem;
    }

    .task-detail-header {
        padding: 1.5rem;
    }

    .task-detail-title {
        font-size: 1.25rem;
    }

    .modern-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modern-tab {
        padding: 0.5rem 1rem;
        white-space: nowrap;
    }

    .fab {
        bottom: 1rem;
        right: 1rem;
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}