    :root {
            --neon-green: #39FF14;
            --dark-bg: #0a0a0a;
            --darker-bg: #050505;
            --medium-bg: #111;
            --light-bg: #1a1a1a;
            --text: #e0e0e0;
            --high-priority: #ff3860;
            --moderate-priority: #ffdd57;
            --low-priority: #48c774;
            --in-progress: #209cee;
            --completed: #23d160;
            --deleted: #ff3860;
            --card-glow: 0 0 10px rgba(57, 255, 20, 0.3);
            --button-glow: 0 0 15px rgba(57, 255, 20, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: var(--dark-bg);
            color: var(--text);
            min-height: 100vh;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(57, 255, 20, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(57, 255, 20, 0.05) 0%, transparent 20%);
        }

        /* Header Styles */
        header {
            background: var(--darker-bg);
            padding: 15px 30px;
            border-bottom: 1px solid rgba(57, 255, 20, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--neon-green), #00b894);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--button-glow);
        }

        .logo i {
            font-size: 24px;
            color: var(--dark-bg);
        }

        .logo-text h1 {
            font-size: 1.8rem;
            background: linear-gradient(to right, var(--neon-green), #00ffaa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
            text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
        }

        .logo-text p {
            font-size: 0.9rem;
            color: #aaa;
            font-style: italic;
        }

        .header-controls {
            display: flex;
            gap: 15px;
        }

        /* Button Styles */
        .btn {
            background: var(--medium-bg);
            color: var(--neon-green);
            border: 1px solid rgba(57, 255, 20, 0.3);
            padding: 8px 18px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn:hover {
            background: rgba(57, 255, 20, 0.1);
            box-shadow: var(--button-glow);
            transform: translateY(-2px);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--neon-green), #00b894);
            color: var(--dark-bg);
            font-weight: 600;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #2de60a, #00a87d);
        }

        .btn-logout {
            background: rgba(255, 56, 96, 0.1);
            color: var(--high-priority);
            border-color: rgba(255, 56, 96, 0.3);
        }

        .btn-logout:hover {
            background: rgba(255, 56, 96, 0.2);
            box-shadow: 0 0 15px rgba(255, 56, 96, 0.3);
        }

        /* Main Layout */
        .main-container {
            display: flex;
            min-height: calc(100vh - 80px);
        }

        /* Sidebar */
        .sidebar {
            width: 260px;
            background: var(--darker-bg);
            border-right: 1px solid rgba(57, 255, 20, 0.1);
            padding: 20px 0;
            display: flex;
            flex-direction: column;
        }

        .sidebar-section {
            padding: 0 15px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            margin-bottom: 20px;
        }

        .sidebar-section h3 {
            color: var(--neon-green);
            margin-bottom: 15px;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sidebar-section h3 i {
            font-size: 1.2rem;
        }

        .nav-links {
            list-style: none;
        }

        .nav-links li {
            margin-bottom: 8px;
        }

        .nav-links a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 15px;
            border-radius: 8px;
            color: var(--text);
            text-decoration: none;
            transition: all 0.2s ease;
        }


        /* Only hover effect - no active state styling */
        .nav-links a:hover {
            background: rgba(57, 255, 20, 0.1);
            color: var(--neon-green);
        }

        /* Ensure focus states are properly cleared */
        .nav-links a:focus {
            outline: none;
        }

        /* Default state - no background or special styling */
        .nav-links a:not(:hover) {
            background: transparent;
            color: var(--text);
        }


        .nav-links a i {
            width: 20px;
            text-align: center;
        }
        
        .nav-links .separator {
            margin: 10px 0;
            border: none;
            height: 1px;
            background: rgba(57, 255, 20, 0.2);
        }
        
        .nav-links .no-projects {
            color: #777;
            font-style: italic;
            padding: 10px 15px;
        }

        .projects-list {
            max-height: 300px;
            overflow-y: auto;
        }

        .projects-list::-webkit-scrollbar {
            width: 6px;
        }

        .projects-list::-webkit-scrollbar-track {
            background: transparent;
        }

        .projects-list::-webkit-scrollbar-thumb {
            background: rgba(57, 255, 20, 0.3);
            border-radius: 3px;
        }

        /* Main Content */
        .content {
            flex: 1;
            padding: 30px;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .dashboard-header h2 {
            color: var(--neon-green);
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .filters {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .filter-select {
            background: var(--medium-bg);
            color: var(--text);
            border: 1px solid rgba(57, 255, 20, 0.2);
            padding: 8px 15px;
            border-radius: 30px;
            min-width: 150px;
        }

        .stats-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }

        .stat-card {
            background: var(--light-bg);
            border: 1px solid rgba(57, 255, 20, 0.1);
            border-radius: 12px;
            padding: 20px;
            box-shadow: var(--card-glow);
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .stat-card h3 {
            color: #aaa;
            font-size: 1rem;
            margin-bottom: 15px;
        }

        .stat-value {
            font-size: 2.2rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--neon-green), #00ffaa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .priority-high .stat-value {
            background: linear-gradient(to right, var(--high-priority), #ff7aa2);
            -webkit-background-clip: text;
            background-clip: text;
        }

        .priority-moderate .stat-value {
            background: linear-gradient(to right, var(--moderate-priority), #ffef9f);
            -webkit-background-clip: text;
            background-clip: text;
        }

        .priority-low .stat-value {
            background: linear-gradient(to right, var(--low-priority), #7fffd4);
            -webkit-background-clip: text;
            background-clip: text;
        }

        .stat-trend {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-top: 5px;
            font-size: 0.9rem;
            color: #aaa;
        }

        .stat-trend.up {
            color: var(--low-priority);
        }

        .stat-trend.down {
            color: var(--high-priority);
        }

        /* Task Lists */
        .task-lists {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }

        .task-list {
            background: var(--light-bg);
            border: 1px solid rgba(57, 255, 20, 0.1);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--card-glow);
        }

        .list-header {
            padding: 15px 20px;
            border-bottom: 1px solid rgba(57, 255, 20, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .list-header h3 {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .list-header .count {
            background: rgba(57, 255, 20, 0.1);
            color: var(--neon-green);
            padding: 2px 10px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        .tasks-container {
            padding: 15px;
            min-height: 300px;
            max-height: 600px;
            overflow-y: auto;
        }

        .tasks-container::-webkit-scrollbar {
            width: 6px;
        }

        .tasks-container::-webkit-scrollbar-track {
            background: transparent;
        }

        .tasks-container::-webkit-scrollbar-thumb {
            background: rgba(57, 255, 20, 0.3);
            border-radius: 3px;
        }

        .task-item {
            background: var(--medium-bg);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            cursor: grab;
        }

        .task-item:hover {
            border-color: rgba(57, 255, 20, 0.3);
            transform: translateX(5px);
        }

        .task-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .task-title {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--neon-green);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .task-priority {
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .priority-high {
            background: rgba(255, 56, 96, 0.15);
            color: var(--high-priority);
            border: 1px solid rgba(255, 56, 96, 0.3);
        }

        .priority-moderate {
            background: rgba(255, 221, 87, 0.15);
            color: var(--moderate-priority);
            border: 1px solid rgba(255, 221, 87, 0.3);
        }

        .priority-low {
            background: rgba(72, 199, 116, 0.15);
            color: var(--low-priority);
            border: 1px solid rgba(72, 199, 116, 0.3);
        }

        .task-body {
            margin-bottom: 15px;
        }

        .task-description {
            color: #bbb;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 12px;
        }

        .task-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: #888;
        }

        .task-assignee {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .assignee-avatar {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--neon-green);
            color: var(--dark-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: bold;
        }

        .task-actions {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 12px;
        }

        .action-btn {
            flex: 1;
            text-align: center;
            padding: 6px;
            border-radius: 6px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .action-btn:hover {
            background: rgba(57, 255, 20, 0.1);
            color: var(--neon-green);
        }

        .action-btn.complete {
            color: var(--completed);
        }

        .action-btn.delete {
            color: var(--deleted);
        }

        /* Statistics Section */
        .stats-section {
            background: var(--light-bg);
            border: 1px solid rgba(57, 255, 20, 0.1);
            border-radius: 12px;
            padding: 25px;
            margin-top: 20px;
            box-shadow: var(--card-glow);
        }

        .stats-section h3 {
            color: var(--neon-green);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .charts-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .chart-container {
            background: var(--medium-bg);
            border-radius: 10px;
            padding: 20px;
            height: 300px;
        }

        /* Footer */
        footer {
            background: var(--darker-bg);
            padding: 20px 30px;
            text-align: center;
            border-top: 1px solid rgba(57, 255, 20, 0.1);
            color: #777;
            font-size: 0.9rem;
        }

        footer p {
            margin-bottom: 5px;
        }

        .copyright {
            color: var(--neon-green);
            font-weight: 500;
        }

        /* Responsive Design */
        @media (max-width: 1100px) {
            .charts-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 900px) {
            .main-container {
                flex-direction: column;
            }
            
            .sidebar {
                width: 100%;
                border-right: none;
                border-bottom: 1px solid rgba(57, 255, 20, 0.1);
            }
        }

        @media (max-width: 768px) {
            .task-lists {
                grid-template-columns: 1fr;
            }
            
            .dashboard-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .filters {
                width: 100%;
                justify-content: space-between;
            }
        }

        @media (max-width: 480px) {
            .header {
                flex-direction: column;
                gap: 15px;
                padding: 15px;
            }
            
            .header-controls {
                width: 100%;
                justify-content: space-between;
            }
            
            .stats-cards {
                grid-template-columns: 1fr;
            }
            
            .filters {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
        }

        .modal-content {
            background-color: #1a1a1a;
            margin: 5% auto;
            padding: 0;
            border: 1px solid #39FF14;
            width: 90%;
            max-width: 800px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(57, 255, 20, 0.3);
        }

        .modal-header {
            background-color: #2a2a2a;
            padding: 20px;
            border-bottom: 1px solid #39FF14;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h2 {
            color: #39FF14;
            margin: 0;
        }

        .close {
            color: #39FF14;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover {
            color: #fff;
        }

        .modal-body {
            padding: 20px;
            max-height: 70vh;
            overflow-y: auto;
        }

        /* Custom scrollbar for modal */
        .modal-body::-webkit-scrollbar {
            width: 8px;
        }

        .modal-body::-webkit-scrollbar-track {
            background: transparent;
        }

        .modal-body::-webkit-scrollbar-thumb {
            background: rgba(57, 255, 20, 0.3);
            border-radius: 4px;
        }

        .modal-body::-webkit-scrollbar-thumb:hover {
            background: rgba(57, 255, 20, 0.5);
        }

        .task-detail-section {
            margin-bottom: 25px;
            padding: 15px;
            background-color: #2a2a2a;
            border-radius: 5px;
        }

        .task-detail-section h3 {
            color: #39FF14;
            margin-top: 0;
            margin-bottom: 15px;
            border-bottom: 1px solid #444;
            padding-bottom: 5px;
        }

        .detail-row {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }

        .detail-row label {
            font-weight: bold;
            color: #ccc;
            min-width: 100px;
            margin-right: 10px;
        }

        .detail-row span, .detail-row p {
            color: #e0e0e0;
            margin: 0;
        }

        .priority-badge {
            padding: 3px 8px;
            border-radius: 3px;
            font-size: 12px;
            font-weight: bold;
        }

        .priority-high {
            background-color: rgba(255, 56, 96, 0.3);
            color: #ff3860;
        }

        .priority-moderate {
            background-color: rgba(255, 221, 87, 0.3);
            color: #ffdd57;
        }

        .priority-low {
            background-color: rgba(72, 199, 116, 0.3);
            color: #48c774;
        }

        #taskNotes {
            width: 100%;
            min-height: 100px;
            background-color: #333;
            color: #e0e0e0;
            border: 1px solid #444;
            border-radius: 4px;
            padding: 10px;
            font-family: inherit;
            resize: vertical;
        }

        #taskNotes:focus {
            outline: none;
            border-color: #39FF14;
        }

        .modal-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .subtask-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            padding: 8px;
            background-color: #333;
            border-radius: 4px;
        }

        .subtask-item input[type="checkbox"] {
            margin-right: 10px;
        }

        .subtask-item.completed {
            opacity: 0.6;
            text-decoration: line-through;
        }

        /* Form input styles */
        .form-input {
            background: var(--medium-bg);
            color: var(--text);
            border: 1px solid rgba(57, 255, 20, 0.2);
            padding: 8px 15px;
            border-radius: 4px;
            width: 100%;
            font-family: inherit;
            font-size: 1rem;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--neon-green);
            box-shadow: 0 0 0 2px rgba(57, 255, 20, 0.2);
        }

        .detail-row textarea {
            min-height: 80px;
            resize: vertical;
        }

        .subtask-input {
            background: var(--medium-bg);
            color: var(--text);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 6px 10px;
            border-radius: 4px;
            flex: 1 250px;
            margin-right: 10px;
        }

        .subtask-input:focus {
            outline: none;
            border-color: var(--neon-green);
        }

        .remove-subtask {
            background: rgba(255, 56, 96, 0.1);
            color: var(--high-priority);
            border: 1px solid rgba(255, 56, 96, 0.3);
            padding: 6px 10px;
            border-radius: 4px;
            cursor: pointer;
        }

        .remove-subtask:hover {
            background: rgba(255, 56, 96, 0.2);
        }

        .detail-row select {
            padding: 8px 15px;
        }

        /* Notification styles */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 15px 20px;
            border-radius: 4px;
            color: white;
            background-color: rgba(57, 255, 20, 0.9);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 1001;
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }

        .notification.show {
            transform: translateX(0);
        }

        .add-subtask-section {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #444;
        }

        .add-subtask-section input {
            margin-bottom: 10px;
        }

        /* User Management Styles */
        .user-management-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .user-list-section, .user-detail-section {
            background: var(--medium-bg);
            border: 1px solid rgba(57, 255, 20, 0.1);
            border-radius: 8px;
            padding: 20px;
        }

        .user-list-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            gap: 10px;
        }

        .user-list-header input {
            flex: 1;
        }

        .user-list-container {
            max-height: 400px;
            overflow-y: auto;
        }

        .user-item {
            background: var(--light-bg);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .user-item:hover {
            border-color: rgba(57, 255, 20, 0.3);
            background: rgba(57, 255, 20, 0.05);
        }

        .user-item.active {
            border-color: var(--neon-green);
            background: rgba(57, 255, 20, 0.1);
        }

        .user-item-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .user-item-username {
            font-weight: 600;
            color: var(--neon-green);
        }

        .user-item-role {
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            background: rgba(57, 255, 20, 0.1);
            color: var(--neon-green);
        }

        .user-item-projects {
            font-size: 0.9rem;
            color: #aaa;
        }

        .user-detail-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(57, 255, 20, 0.1);
        }

        .user-detail-username {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--neon-green);
        }

        .user-detail-role {
            padding: 5px 15px;
            border-radius: 20px;
            background: rgba(57, 255, 20, 0.1);
            color: var(--neon-green);
        }

        .user-detail-sections {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .user-detail-section-item {
            background: var(--light-bg);
            border: 1px solid rgba(57, 255, 20, 0.1);
            border-radius: 8px;
            padding: 20px;
        }

        .user-detail-section-item h4 {
            color: var(--neon-green);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .project-assignment-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            background: var(--medium-bg);
            border-radius: 6px;
            margin-bottom: 10px;
        }

        .project-assignment-info {
            flex: 1;
        }

        .project-assignment-name {
            font-weight: 600;
            color: var(--text);
        }

        .project-assignment-role {
            font-size: 0.8rem;
            padding: 3px 8px;
            border-radius: 20px;
            background: rgba(57, 255, 20, 0.1);
            color: var(--neon-green);
        }

        .project-assignment-actions {
            display: flex;
            gap: 10px;
        }

        .project-assignment-actions button {
            padding: 5px 10px;
            font-size: 0.8rem;
        }

        .add-project-assignment {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .add-project-assignment select {
            flex: 1;
        }

        .user-role-select {
            width: 100%;
            margin: 10px 0;
        }

        @media (max-width: 768px) {
            .user-management-container {
                grid-template-columns: 1fr;
            }
        }

        /* Logout Modal Styles */
        .logout-modal-content {
            max-width: 450px;
            text-align: center;
        }

        .logout-confirmation {
            padding: 20px;
            text-align: center;
        }

        .logout-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--neon-green), #00b894);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--button-glow);
        }

        .logout-icon i {
            font-size: 2rem;
            color: var(--dark-bg);
        }

        .logout-confirmation p {
            font-size: 1.1rem;
            color: var(--text);
            margin-bottom: 10px;
        }

        .logout-subtitle {
            font-size: 0.9rem;
            color: #aaa;
            margin-bottom: 30px;
        }

        .logout-actions {
            justify-content: center;
            gap: 20px;
        }

        .logout-actions .btn {
            min-width: 120px;
            padding: 10px 20px;
        }

        /* Activity Log Styles */
        .activity-log-item {
            background: var(--medium-bg);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .activity-log-item:hover {
            border-color: rgba(57, 255, 20, 0.3);
            transform: translateX(5px);
        }

        .activity-log-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
        }

        .activity-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .activity-icon.action-create {
            background: rgba(72, 199, 116, 0.15);
            color: var(--low-priority);
            border: 1px solid rgba(72, 199, 116, 0.3);
        }

        .activity-icon.action-update {
            background: rgba(32, 156, 238, 0.15);
            color: var(--in-progress);
            border: 1px solid rgba(32, 156, 238, 0.3);
        }

        .activity-icon.action-status {
            background: rgba(255, 221, 87, 0.15);
            color: var(--moderate-priority);
            border: 1px solid rgba(255, 221, 87, 0.3);
        }

        .activity-icon.action-archive {
            background: rgba(255, 56, 96, 0.15);
            color: var(--high-priority);
            border: 1px solid rgba(255, 56, 96, 0.3);
        }

        .activity-icon.action-note {
            background: rgba(57, 255, 20, 0.15);
            color: var(--neon-green);
            border: 1px solid rgba(57, 255, 20, 0.3);
        }

        .activity-icon.action-info {
            background: rgba(128, 128, 128, 0.15);
            color: #888;
            border: 1px solid rgba(128, 128, 128, 0.3);
        }

        .activity-info {
            flex: 1;
        }

        .activity-user {
            font-weight: 600;
            color: var(--neon-green);
            font-size: 1rem;
        }

        .activity-time {
            font-size: 0.85rem;
            color: #888;
            margin-top: 2px;
        }

        .activity-description {
            color: #bbb;
            font-size: 0.95rem;
            line-height: 1.5;
            padding-left: 55px;
        }

        /* Section Header Styles */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .section-header h2 {
            color: var(--neon-green);
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        /* Content Section Styles */
        .content-section {
            display: none;
        }

        .content-section.active {
            display: block;
        }

