* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            background: linear-gradient(135deg, #1a2a6c, #2a3a7c);
            color: white;
            padding: 30px 0;
            text-align: center;
            border-radius: 0 0 10px 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }
        
        .logo-icon {
            font-size: 2.5rem;
            margin-right: 15px;
        }
        
        /* Navigation Menu Styles */
        .main-nav {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .nav-menu li {
            margin: 0;
        }
        
        .nav-menu a {
            display: block;
            padding: 15px 25px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }
        
        .nav-menu a:hover {
            background-color: #f0f5ff;
            color: #1a2a6c;
            border-bottom: 3px solid #1a2a6c;
        }
        
        .nav-menu .current a {
            color: #1a2a6c;
            border-bottom: 3px solid #1a2a6c;
            background-color: #f0f5ff;
        }
        
        /* Responsive navigation */
        @media (max-width: 768px) {
            .nav-menu {
                flex-direction: column;
            }
            
            .nav-menu li {
                width: 100%;
                text-align: center;
            }
        }
        
        .professor-info {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .professor-avatar {
            font-size: 4rem;
        }
        
        .dashboard-section {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 1.5rem;
            color: #1a2a6c;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e0e7ff;
        }

        /* Research Layout */
        .research-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            margin-top: 20px;
        }

        @media (max-width: 968px) {
            .research-layout {
                grid-template-columns: 1fr;
            }
        }

        .research-main {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .research-sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .research-card {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            border-left: 4px solid #007bff;
            transition: all 0.3s ease;
        }

        .research-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .research-card h3 {
            color: #1a2a6c;
            margin-bottom: 15px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .research-card h3 i {
            color: #007bff;
        }

        .topic-list {
            list-style-type: none;
            margin-top: 15px;
        }

        .topic-list li {
            margin-bottom: 12px;
            padding: 12px;
            background: white;
            border-radius: 6px;
            border-left: 3px solid #28a745;
            transition: all 0.3s ease;
        }

        .topic-list li:hover {
            transform: translateX(5px);
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .topic-taken {
            color: #007bff;
            font-weight: 600;
        }

        .topic-available {
            color: #2c3e50;
            font-weight: 500;
        }

        .topic-description {
            color: #666;
            margin-top: 8px;
            line-height: 1.5;
            display: none;
        }

        .btn-read-more {
            background: #007bff;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.8rem;
            transition: all 0.3s ease;
            margin-top: 8px;
        }

        .btn-read-more:hover {
            background: #0056b3;
            transform: translateY(-1px);
        }

        .steps-list {
            list-style-type: decimal;
            margin-left: 20px;
            margin-top: 15px;
        }

        .steps-list li {
            margin-bottom: 10px;
            padding: 8px;
            background: #f8f9fa;
            border-radius: 4px;
        }

        /* Student List */
        .student-list {
            list-style-type: none;
        }

        .student-list li {
            margin-bottom: 15px;
            padding: 15px;
            background: white;
            border-radius: 6px;
            border-left: 3px solid #17a2b8;
        }

        .student-details {
            margin-top: 8px;
            padding-left: 10px;
            border-left: 2px solid #e9ecef;
        }

        .student-details ul {
            list-style-type: none;
            margin-top: 5px;
        }

        .student-details li {
            margin-bottom: 5px;
            padding: 0;
            background: none;
            border: none;
        }

        /* Downloads */
        .downloads-list {
            list-style-type: none;
        }

        .downloads-list li {
            margin-bottom: 10px;
        }

        .downloads-list a {
            color: #1a2a6c;
            text-decoration: none;
            padding: 8px 12px;
            display: block;
            background: #f8f9fa;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .downloads-list a:hover {
            background: #007bff;
            color: white;
            transform: translateX(5px);
        }

        /* Writing Tools */
        .tools-list {
            list-style-type: none;
        }

        .tools-list li {
            margin-bottom: 15px;
            padding: 15px;
            background: white;
            border-radius: 6px;
            border-left: 3px solid #ffc107;
        }

        .tool-description {
            color: #666;
            margin-top: 8px;
            line-height: 1.5;
            display: none;
        }

        footer {
            text-align: center;
            padding: 20px 0;
            margin-top: 40px;
            border-top: 1px solid #e0e7ff;
            color: #666;
            font-size: 0.9rem;
        }
        
        footer a {
            color: #1a2a6c;
            text-decoration: none;
            margin: 0 5px;
        }
        
        footer a:hover {
            text-decoration: underline;
        }

        .completion-badge {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: bold;
            margin-left: 8px;
        }

        .completed {
            background: #28a745;
            color: white;
        }

        .in-progress {
            background: #ffc107;
            color: #212529;
        }

        .just-started {
            background: #dc3545;
            color: white;
        }