  /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body { 
            font-family: Calibri, kalpurush !important;
            max-width: 1000px; 
            margin: 0 auto; 
            padding: 10px; 
            background: #f5f5f5;
            min-height: 100vh;
        }
        
        ul {
            padding-bottom: 3px;
            padding-top: 3px;
            margin: 0px; 
        }

        li {
            padding-bottom: 3px; 
            padding-top: 3px;
            margin: 0px; 
            border-bottom: 1px solid #ddd;
        }

hr {
	margin-top:3px;
	margin-bottom:3px;
	border:1px dotted #a5a6a8;
  }

        .phdr {  
            background: #047448;
            padding: 5px;
            color: #fff; 
            border-radius: 4px;
            text-align: center;
            font-weight: bold;
            margin: 5px 0;
        }

        .container { 
            background: #fff; 
            padding: 15px; 
            border-radius: 8px; 
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }

        .form-group { margin-bottom: 15px; }
        label { display: block; margin-bottom: 5px; font-weight: bold; }
        input[type="text"], textarea, select { 
            width: 100%; 
            padding: 10px; 
            box-sizing: border-box; 
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }
        
        button { 
            background: #4CAF50; 
            color: white; 
            border: none; 
            padding: 12px 20px; 
            cursor: pointer; 
            margin-right: 10px; 
            border-radius: 4px;
            font-size: 16px;
        }
        
        button:hover { background: #45a049; }
        
        .cancel-btn { 
            background: #f44336; 
            color: white; 
            text-decoration: none; 
            padding: 9px 12px; 
            border-radius: 4px; 
            display: inline-block;
            font-size: 16px;
        }
        
        .cancel-btn:hover { background: #d32f2f; }
        
        table { 
            width: 100%; 
            border-collapse: collapse; 
           
        }
        
        th, td { 
            padding: 6px; 
            border: 1px solid #919191; 
            text-align: left;
        }
        
        th { background: #f2f2f2; font-weight: bold; }
        tr:nth-child(even) {background-color: #f9f9f9}
        
        .actions a { 
            margin-right: 10px; 
            text-decoration: none;
            padding: 5px 10px;
            border-radius: 3px;
        }
        
        .view { 
            color: #991a22;
        }
        
        .delete { 
            color: #f44336;
            background: #ffebee;
        }
        
        .message { 
            padding: 15px; 
            background: #dff0d8; 
            color: #3c763d; 
            margin-bottom: 20px; 
            border-radius: 4px; 
            border-left: 4px solid #3c763d;
        }

        a {
            text-decoration: none; 
            color: #991a22;
        }
        
        a:hover { 
            color: red;
            text-decoration: none;
        }

        /* Search and filter styles */
        .search-container {
            background: #fff;
            padding: 10px;
            border-radius: 8px;
            margin-bottom: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            border: 1px solid #ddd;
        }
        
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }
        
        .search-form input[type="text"],
        .search-form select {
            flex: 1;
            min-width: 200px;
            padding: 10px;
        }
        
        .search-form button {
            background: #2196F3;
            border-radius: 5px;
            white-space: nowrap;
            padding: 10px ;
        }

        /* Thumbnail styles */
        .thumbnail {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 4px;
            margin-right: 15px;
            vertical-align: middle;
            border: 1px solid #ddd;
        }

        /* 2-column layout */
        .two-column-layout {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .left-column {
            flex: 1;
        }

        .right-column {
            width: 250px;
            background: white;
            padding: 12px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            border: 1px solid #ddd;
        }

        /* Blog item styles */
        .blog-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            padding: 15px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            border: 1px solid #eee;
        }
        
        .blog-title {
            flex: 1;
        }
        
        .category-badge {
            display: inline-block;
            background: #e3f2fd;
            color: #1976d2;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            margin-left: 10px;
            font-weight: bold;
        }

        /* Serial number */
        .serial-number {
            display: inline-block;
            width: 30px;
            height: 30px;
            background: #4CAF50;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 30px;
            font-size: 14px;
            margin-right: 15px;
            font-weight: bold;
            flex-shrink: 0;
        }

        /* Pagination styles */
   .pagination {
    margin: 30px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px; /* বাটনগুলোর মধ্যে ফাঁকা */
}

.pagination a, .pagination span, .pagination button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px; /* নির্দিষ্ট width */
    height: 30px; /* নির্দিষ্ট height */
    padding: 0;
    text-decoration: none;
    color: #333;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Prev/Next বাটনের জন্য বেশি width */
.pagination .prev, .pagination .next {
    width: 60px;
}

.pagination a:hover, .pagination button:hover:not(.disabled) {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pagination .current {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
    font-weight: bold;
    transform: scale(1.05);
}

.pagination .disabled {
    color: #ccc;
    cursor: not-allowed;
    background: #f9f9f9;
    border-color: #eee;
    transform: none;
    box-shadow: none;
}

/* ellipsis (...) জন্য স্টাইল */
.pagination .ellipsis {
    border: none;
    background: transparent;
    cursor: default;
    width: auto;
    padding: 0 5px;
}

/* বাটনের টেক্সট সেন্টার করতে */
.pagination a, .pagination button {
    text-align: center;
}
		

        /* Blog view styles */
        .blog-view {
            background: white;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
            border: 1px solid #ddd;           
        }
        
        .blog-header {
            border-bottom: 2px solid #4CAF50;
            padding-bottom: 15px;
            margin-bottom: 2px;
        }
        
        .blog-title-view {
            font-size: 28px;
            color: #333;
            margin: 0 0 10px 0;
            line-height: 1.3;
        }
        
        .blog-category-view {
            color: #4CAF50;
            font-weight: bold;
            font-size: 16px;
        }
        
        .blog-content-view {
            line-height: 1.5;
            font-size: 16px;
			text-align:justify
        }
        
        .blog-content-view img {
            max-width: 100%;
            height: auto;
            margin: 15px 0;
            border-radius: 6px;
        }
        
        .blog-content-view p {
            margin-bottom: 15px;
        }

        /* Empty column message */
        .empty-column {
            color: #666;
            padding: 20px;
            text-align: center;
            background: #f9f9f9;
            border-radius: 8px;
            border: 1px dashed #ddd;
        }

        .empty-column h3 {
            color: #999;
            margin-bottom: 10px;
        }

        /* Header styles */
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #fff;
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border: 1px solid #ddd;
        }

        .logo-section {
            display: flex;
            align-items: center;
        }

        .logo-section a {
            display: block;
        }

        .logo-section img {
            max-height: 50px;
            width: auto;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .social-icons a {
            display: inline-block;
            transition: transform 0.3s, opacity 0.3s;
        }

        .social-icons a:hover {
            transform: translateY(-3px);
            opacity: 0.8;
        }

        .social-icons img {
            width: 32px;
            height: 32px;
            border-radius: 6px;
        }

        /* Footer styles */
        .footer-container {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border: 1px solid #ddd;
            text-align: center;
            color: #666;
            font-size: 14px;
        }

        /* Section title */
        .section-title {
            text-align: center;
            margin: 20px 0;
            color: #333;
            font-size: 22px;
            font-weight: bold;
            padding-bottom: 10px;
            border-bottom: 2px solid #4CAF50;
        }

        /* Results info */
        .results-info {
            text-align: center;
            color: #666;
            margin: 15px 0;
            font-size: 15px;
            padding: 10px;
            background: #f9f9f9;
            border-radius: 6px;
        }

        /* Back button */
        .back-button {
            display: inline-block;
            margin-top: 10px;
            padding: 5px;
        }

        /* Mobile responsiveness - MUST BE AT THE END */
        @media screen and (max-width: 768px) {
            body {
                padding: 8px;
            }
            
            .container {
                padding: 10px;
            }
            
            /* Header adjustments for mobile */
            .header-container {
                flex-direction: column;
                text-align: center;
                padding: 15px;
                gap: 15px;
                margin-bottom: 15px;
            }
            
            .social-icons {
                display: none; /* Mobile এ social icons লুকানো */
            }
            
            /* Two column layout adjustments - IMPORTANT FIX */
            .two-column-layout {
                flex-direction: column;
                gap: 15px;
                margin-top: 15px;
            }
            
            .left-column {
                width: 100%;
                order: 0; /* Left column প্রথমে */
            }
            
            .right-column {
                width: 100%;
                max-width: 100%;
                order: 1; /* Right column পরে */
                margin-top: 0;
            }
            
            /* Search form adjustments */
            .search-form {
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
            }
            
            .search-form input[type="text"],
            .search-form select {
                min-width: 100%;
                margin-bottom: 0;
                width: 100%;
            }
            
            .search-form button {
                width: 100%;
                padding: 12px;
            }
            
            /* Blog item adjustments for mobile */
            .blog-item {
                margin-bottom: 15px; padding: 15px; background: white; border-radius: 6px; box-shadow: 0 2px 4px rgba(0,0,0,0.1);border: 1px solid #eee;
            }
            
            
            .blog-title {
                display: flex; align-items: center;
            }
            
            .thumbnail {
               width: 60px; height: 60px; object-fit: cover; border-radius: 4px; margin-right: 15px;
            }
            
            
            /* Button adjustments */
            button, .cancel-btn {
                width: 100%;
                margin: 5px 0;
                padding: 12px;
            }
            
            /* Blog view adjustments */
            .blog-view {
                padding: 15px;
            }
            
            .blog-title-view {
                font-size: 22px;
            }
            
            /* Pagination adjustments */
            .pagination a, .pagination span {
                padding: 8px 12px;
                margin: 2px;
                font-size: 13px;
            }
            
            /* Footer adjustments */
            .footer-container {
                padding: 15px;
                font-size: 13px;
            }
        }
        
        /* Very small devices */
        @media screen and (max-width: 480px) {
            body {
                padding: 5px;
            }
            
            .container {
                padding: 8px;
            }
            
            .blog-title-view {
                font-size: 20px;
            }
            
            .pagination a, .pagination span {
                padding: 6px 10px;
                font-size: 12px;
            }
        }
		
	/* Pagination css */	
		
		#search {
            width: 100%;
            padding: 8px;
            margin-bottom: 7px;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
        }
        
        #search:focus {
            outline: none;
            border-color: #4CAF50;
        }
        
        #list {
            list-style-type: none;
        }
        

        
  .star {
            color: #000;
            margin-right: 5px;
        }

        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 10px;
            flex-wrap: wrap;
        }
        .pagination button {
            margin: 5px;
            padding: 8px 10px;
            cursor: pointer;
            background: white;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        .pagination button.active {
            background-color: #0066cc;
            color: white;
            border-color: #0066cc;
        }
        .pagination button:hover:not(.active) {
            background-color: #f0f0f0;
        }
        
        .no-results {
            text-align: center;
            padding: 20px;
            color: #666;
            font-style: italic;
        }

  
#p-a2 {
    display: inline-block;
    background-image: url(https://asikurbd.github.io/wi/up_down_look.gif);
    background-size: 100%100%;
    width: 100px;
    height: 40px;
    display:block;
    text-align: center;
}  



#p-a1 {
    display: inline-block;
    background-image: url(https://asikurbd.github.io/wi/download.gif);
    background-size: 100%100%;
    width: 170px;
    height: 70px;
    display:block;
    text-align: center;
} 


.inote {
background:#bcc084;border: 1px solid #25a154;padding:16px;color: #000;margin-top:3px;margin-bottom:3px;border-radius: 5px;
} 