

        .admin-container {
            display: flex;
            min-height: 100vh;
        }

      

        /* Main Content */
        .admin-main {
            flex: 1;
            margin-left: 250px;
            transition: margin-left 0.3s ease;
        }

       

        /* Content Area */
        .admin-content {
            padding: 30px;
            min-height: calc(100vh - 70px - 60px);
        }

        .content-header {
            margin-bottom: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .content-header-left h1 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 8px;
            background: linear-gradient(90deg, #4da6ff, #0066cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .content-header-left p {
            color: #bbbbbb;
            font-size: 1.1rem;
            font-weight: 300;
        }

        /* Add Blog Button */
        .add-blog-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background: linear-gradient(135deg, #4da6ff, #0066cc);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(77, 166, 255, 0.3);
            min-height: 44px;
        }

        .add-blog-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(77, 166, 255, 0.5);
        }

        .add-blog-btn i {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .add-blog-btn:hover i {
            transform: rotate(90deg);
        }

        /* Blogs Table */
        .blogs-table-container {
            background: rgba(15, 15, 15, 0.7);
            border: 1px solid rgba(77, 166, 255, 0.2);
            border-radius: 15px;
            padding: 20px;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        .blogs-table {
            width: 100%;
            border-collapse: collapse;
        }

        .blogs-table th {
            text-align: left;
            padding: 16px 20px;
            border-bottom: 1px solid rgba(77, 166, 255, 0.2);
            color: #4da6ff;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .blogs-table td {
            padding: 16px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            color: #bbbbbb;
        }

        .blogs-table tr:last-child td {
            border-bottom: none;
        }

        .blogs-table tr:hover {
            background: rgba(77, 166, 255, 0.05);
        }

        /* Blog Thumbnail */
        .blog-thumbnail {
            width: 60px;
            height: 60px;
            border-radius: 10px;
            overflow: hidden;
            background: rgba(20, 20, 20, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blog-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-thumbnail i {
            font-size: 1.5rem;
            color: #4da6ff;
        }

        /* Blog Info */
        .blog-title {
            font-weight: 600;
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .blog-author {
            font-size: 0.9rem;
            color: #bbbbbb;
        }

        /* Status Badges */
        .status-badge {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .status-published {
            background: rgba(46, 204, 113, 0.15);
            color: #2ecc71;
        }

        .status-draft {
            background: rgba(243, 156, 18, 0.15);
            color: #f39c12;
        }

        .status-archived {
            background: rgba(149, 165, 166, 0.15);
            color: #95a5a6;
        }

        /* Action Buttons */
        .action-buttons {
            display: flex;
            gap: 10px;
        }

        .action-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(77, 166, 255, 0.1);
            color: #4da6ff;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 36px;
            min-height: 36px;
        }

        .action-btn:hover {
            background: rgba(77, 166, 255, 0.2);
            transform: translateY(-3px);
        }

        .action-btn.delete {
            background: rgba(231, 76, 60, 0.1);
            color: #e74c3c;
        }

        .action-btn.delete:hover {
            background: rgba(231, 76, 60, 0.2);
        }

        /* Blog Card Layout for Mobile */
        .blogs-table-card {
            display: none;
        }

        .blog-card {
            background: rgba(15, 15, 15, 0.7);
            border: 1px solid rgba(77, 166, 255, 0.2);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .blog-card-header {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .blog-card-content {
            margin-bottom: 10px;
        }

        .blog-card-content div {
            margin-bottom: 5px;
            font-size: 0.9rem;
            color: #bbbbbb;
        }

        .blog-card-content .blog-title {
            font-size: 1rem;
            color: #fff;
        }

        /* Blog Form Modal */
        .blog-form-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .blog-form-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .form-container {
            background: rgba(15, 15, 15, 0.95);
            border: 1px solid rgba(77, 166, 255, 0.3);
            border-radius: 15px;
            width: 100%;
            max-width: 700px;
            box-shadow: 0 0 40px rgba(77, 166, 255, 0.2);
            backdrop-filter: blur(10px);
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .blog-form-modal.active .form-container {
            transform: translateY(0);
        }

        .form-header {
            padding: 20px 25px;
            border-bottom: 1px solid rgba(77, 166, 255, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .form-header h2 {
            font-size: 1.8rem;
            font-weight: 600;
            background: linear-gradient(90deg, #4da6ff, #0066cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .close-form {
            background: transparent;
            border: none;
            color: #bbbbbb;
            font-size: 1.5rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            min-width: 44px;
            min-height: 44px;
        }

        .close-form:hover {
            color: #e74c3c;
            background: rgba(231, 76, 60, 0.1);
        }

        .form-content {
            padding: 25px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            color: #bbbbbb;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .form-input,
        .form-textarea,
        .form-select {
            width: 100%;
            padding: 12px 16px;
            background: rgba(25, 25, 25, 0.7);
            border: 1px solid rgba(77, 166, 255, 0.2);
            border-radius: 8px;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            min-height: 44px;
        }

        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            outline: none;
            border-color: #4da6ff;
            box-shadow: 0 0 0 3px rgba(77, 166, 255, 0.2);
        }

        .form-textarea {
            min-height: 180px;
            resize: vertical;
        }

        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-col {
            flex: 1;
        }

        .form-actions {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
            padding-top: 10px;
        }

        .form-btn {
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            min-height: 44px;
        }

        .btn-submit {
            background: linear-gradient(135deg, #4da6ff, #0066cc);
            color: white;
            box-shadow: 0 5px 15px rgba(77, 166, 255, 0.3);
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(77, 166, 255, 0.5);
        }

        .btn-cancel {
            background: rgba(50, 50, 50, 0.5);
            color: #bbbbbb;
            border: 1px solid rgba(77, 166, 255, 0.2);
        }

        .btn-cancel:hover {
            background: rgba(70, 70, 70, 0.5);
            color: #fff;
        }

        /* Footer */
        .admin-footer {
            background: #111111;
            border-top: 1px solid rgba(77, 166, 255, 0.2);
            padding: 20px 30px;
            text-align: center;
            color: #bbbbbb;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 992px) {
         

            .admin-main {
                margin-left: 0;
            }

            .sidebar-logo h2,
            .nav-label,
            .nav-badge {
                display: none;
            }

            .admin-nav a {
                justify-content: center;
                padding: 12px;
            }

            .admin-nav i {
                margin-right: 0;
                font-size: 1.4rem;
            }

            .admin-nav a.active {
                border-left: none;
                border-radius: 50%;
                background: rgba(77, 166, 255, 0.2);
            }

            .menu-toggle {
                display: block;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }
        }

        @media (max-width: 768px) {
           

            .topbar-title {
                font-size: 1.2rem;
            }

            .admin-name {
                display: none;
            }

            .admin-content {
                padding: 20px;
            }

            .content-header-left h1 {
                font-size: 1.8rem;
            }

            .content-header-left p {
                font-size: 1rem;
            }

            .blogs-table {
                display: none;
            }

            .blogs-table-container {
                padding: 15px;
            }

            .blogs-table-card {
                display: block;
            }

            .form-container {
                width: 90%;
                max-width: 500px;
                margin: 0 auto;
            }
        }

        @media (max-width: 576px) {
            .admin-content {
                padding: 15px;
            }

            .content-header {
                gap: 10px;
            }

            .content-header-left h1 {
                font-size: 1.5rem;
            }

            .content-header-left p {
                font-size: 0.9rem;
            }

            .add-blog-btn {
                padding: 10px 15px;
                font-size: 0.9rem;
                min-height: 40px;
            }

            .add-blog-btn i {
                font-size: 1rem;
            }

            .blog-thumbnail {
                width: 50px;
                height: 50px;
            }

            .blog-thumbnail i {
                font-size: 1.3rem;
            }

            .action-btn {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
                min-width: 32px;
                min-height: 32px;
            }

            .form-header h2 {
                font-size: 1.4rem;
            }

            .form-content {
                padding: 20px 15px;
            }

            .form-input,
            .form-textarea,
            .form-select {
                padding: 10px 12px;
                font-size: 0.9rem;
                min-height: 40px;
            }

            .form-label {
                font-size: 0.9rem;
            }

            .form-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
                min-height: 40px;
            }

        }