* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            display: flex;
            /* height: 100vh; */
            background: #1c2025;
            color: #e2e8f0;
    /* background-image: url('../images/mini_buddha.jpg');  */
    /* background-size: fit;  */
    background-size:cover; 
    background-position: center;  
    background-repeat: no-repeat; 
    background-attachment: fixed; /* Keeps the background in place while scrolling */
            
        }

.profile-info a {

  list-style-type: none;
  color: white;
  text-decoration: none;
 
}
.screener {
    max-height: 600px;
}

        .sidebar {
            width: 320px;
            background: #0f172a;
            border-right: 1px solid #334155;
            display: flex;
            flex-direction: column;
            box-shadow: 2px 0 8px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.18);
   
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
        }

        .sidebar-header {
            padding: 40px 30px 30px;
            border-bottom: 1px solid #334155;
            /* background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%); */
        background-image: url(../images/mini_buddha.jpg);
             background-size: cover; 
              background-position: center; 
        
        }

        .profile-section {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            color: white;
            margin-right: 15px;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .profile-info h1 {
            font-size: 20px;
            margin-bottom: 5px;
            color: white;
        }

        .profile-info p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
        }

        .search-box {
            padding: 20px 30px;
            border-bottom: 1px solid #334155;
            background: #1e293b;
            background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
            
            
        }

        .search-wrapper {
            position: relative;
        }

        .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #64748b;
            font-size: 16px;
        }

        .search-box input {
            width: 100%;
            padding: 12px 12px 12px 40px;
            background: #0f172a;
            border: 2px solid #334155;
            border-radius: 10px;
            color: #e2e8f0;
            font-size: 14px;
            transition: all 0.3s;
            background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
        }

        .search-box input:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
        }

        .search-box input::placeholder {
            color: #64748b;
        }

        .articles-list {
            flex: 1;
            overflow-y: auto;
            padding: 20px 0;
        }

        .articles-list::-webkit-scrollbar {
            width: 6px;
        }

        .articles-list::-webkit-scrollbar-track {
            background: transparent;
        }

        .articles-list::-webkit-scrollbar-thumb {
            background: #475569;
            border-radius: 3px;
        }

        .article-item {
            padding: 18px 30px;
            cursor: pointer;
            transition: all 0.3s;
            border-left: 3px solid transparent;
        }

        .article-item:hover {
            background: rgba(59, 130, 246, 0.1);
            border-left-color: #3b82f6;
        }

        .article-item.active {
            background: rgba(59, 130, 246, 0.15);
            border-left-color: #8b5cf6;
        }

        .article-item h3 {
            font-size: 15px;
            margin-bottom: 6px;
            color: #f1f5f9;
            font-weight: 600;
        }

        .article-item p {
            font-size: 12px;
            color: #94a3b8;
        }

        .main-content {
            flex: 1;
            background: #0f172a;
            margin: 20px;
            border-radius: 16px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
            /* overflow: hidden; */
            /* display: flex; */
            /* flex-direction: column; */
            height: auto;
            background: rgba(255, 255, 255, 0.083);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(10px);
            
            
        }

        .content-header {
            padding: 50px 60px 40px;
            /* background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%); */
            background-image: url(../images/writing_header.jpg) ;
             background-size: cover; 
              background-position: center; 
        }

        .content-header h2 {
            font-size: 42px;
            margin-bottom: 15px;
            color: white;
            line-height: 1.2;
        }

        .content-header .meta {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
            display: flex;
            gap: 20px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .content-body {
            padding: 50px 60px;
            /* overflow-y: auto; */
            line-height: 1.8;
            font-size: 17px;
            color: #cbd5e1;
        }

        .content-body::-webkit-scrollbar {
            width: 10px;
        }

        .content-body::-webkit-scrollbar-track {
            background: #1e293b;
        }

        .content-body::-webkit-scrollbar-thumb {
            background: #475569;
            border-radius: 5px;
        }

        .content-body p {
            margin-bottom: 20px;
        }

        .welcome-message {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            text-align: center;
            padding: 50px;
            
        }

        .welcome-icon {
            font-size: 80px;
            margin-bottom: 30px;
            opacity: 0.6;
        }

        .welcome-message h2 {
            font-size: 36px;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;

                background-image: url(../images/h4small.gif);
    background-size: cover;
    color: transparent;
    -moz-background-clip: text;
    -webkit-background-clip: text;
    text-transform: uppercase;
    margin: 10px 0;
        }

        .welcome-message p {
            color: #94a3b8;
            font-size: 16px;
        }

        .no-results {
            text-align: center;
            padding: 40px;
            color: #64748b;
        }

        .highlight {
            background: rgba(59, 130, 246, 0.3);
            padding: 2px 4px;
            border-radius: 3px;
        }

        .loading {
            text-align: center;
            padding: 40px;
            color: #94a3b8;
        }