            body {
                        background-color: #0b0f19;
                        color: #fff;
                        font-family: 'Poppins', sans-serif;
                    }
            .custom-alert {
                    position: fixed;
                    top: 80x;
                    right: 0px;
                    width: auto; 
                    max-width: 400px; 
                    z-index: 1050; 
                }

            .responsive-content-img {
                width: 100%;
                height: auto;
                display: block;
                margin: 10px 0;
            }
            @media (max-width: 768px) {
                .responsive-content-img {
                    width: 100%;
                    height: auto;
                }
            }
             .w-100{
            width: 75px !important;
        }

        /* ===================  Layouts ========================= */

        .navbar {
            background: linear-gradient(135deg, #6a11cb, #2575fc);
            box-shadow: 0px 4px 10px rgba(42, 82, 190, 0.3);
            border-bottom: 2px solid #6a11cb;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            margin-left: 200px;
            
        }
        .navbar-brand {
            font-weight: bold;
            font-size: 22px;
            color: #fff !important;
            text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
        }
        .navbar-left {
            display: flex;
            align-items: center;
        }
        .blog-link {
            margin-left: 60px;
            font-weight: 500;
            color: #fff;
            text-decoration: none;
        }
        .blog-link:hover {
            text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
        }
        .navbar-links {
            display: flex;
            align-items: center;
        }
        .navbar-links a {
            color: #fff;
            margin-right: 20px;
            text-decoration: none;
            font-weight: 500;
        }
        .navbar-links a:hover {
            text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
        }
        .sidebar {
            width: 250px;
            height: 100vh;
            background: rgba(11, 15, 25, 0.95);
            padding-top: 20px;
            position: fixed;
            left: 0;
            top: 0;
            box-shadow: 4px 0px 10px rgba(106, 17, 203, 0.2);
        }
        .sidebar a {
            display: block;
            color: #fff;
            padding: 15px;
            text-decoration: none;
            transition: 0.3s;
        }
        .sidebar a:hover {
            background: linear-gradient(135deg, #6a11cb, #2575fc);
            border-left: 5px solid #fff;
        }
        .content-box {
            margin-left: 270px;
            padding: 30px;
            border-radius: 12px;
            background: rgba(20, 20, 40, 0.9);
            box-shadow: 0px 0px 20px rgba(42, 82, 190, 0.4);
        }
        .logout-icon {
            font-size: 18px;
            color: #ff4d4d;
        }

    /* ====================== Post Dispaly  =============================== */


    /* ======================Post Create&Edit ============================== */
        .container {
        background-color: #f8f9fa;
        color: #333;
        max-width: 90%;
        /* background: #fff; */
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        font-family: 'Poppins', sans-serif;
    }
    .form-control {
        background-color: #fff;
        color: #333;
        border: 1px solid #ccc;
        padding: 10px;
        border-radius: 5px;
        transition: 0.3s;
    }
    .form-control:focus {
        border-color: #007bff;
        box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
        background-color: #f9f9f9;
    }
    .btn-submit {
        background: linear-gradient(135deg, #007bff, #28a745);
        border: none;
        padding: 12px 20px;
        font-size: 16px;
        color: #fff;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s ease-in-out;
        display: block;
        width: 200px;
        margin: 0 auto;
        text-align: center;
    }
    .btn-submit:hover {
        box-shadow: 0px 0px 15px rgba(0, 123, 255, 0.4);
        transform: translateY(-3px);
    }
    label {
        font-weight: bold;
        color: #007bff;
    }
    textarea {
        resize: none;
    }
    /* ========================= Login and Register ============================= */
    .auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(45deg, #936bff, #0285ff);
    }

    .auth-box {
        color: #fff;
        background: linear-gradient(45deg, #0285ff, #936bff);
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        width: 100%;
        max-width: 350px;
    }

    .auth-title {
        color: #ffffff;
        font-size: 26px;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .auth-error {
        color: #ff4d4d;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .auth-input {
        width: 90%;
        padding: 12px;
        margin-bottom: 15px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        transition: 0.3s;
    }

    .auth-input:focus {
        border-color: #e442dc94;
        outline: none;
        box-shadow: 0 0 5px rgba(225, 2, 255, 0.5);
    }

    .auth-input::placeholder {
        color: rgba(241, 241, 241, 0.7);
    }

    .auth-button {
        width: 100%;
        padding: 12px;
        background: #8d47ff;
        color: white;
        font-weight: bold;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        transition: 0.3s;
    }

    .auth-button:hover {
        background: #8e0ee4;
        transform: scale(1.05);
    }

    .auth-text {
        color: #ffffff;
        margin-top: 15px;
    }

    .auth-link {
        color: #dd74eb;
        font-weight: bold;
        text-decoration: none;
        transition: 0.3s;
    }

    .auth-link:hover {
        text-decoration: underline;
        color: #a251d8;
    }
/* ============================= Loader ======================================= */
     #page-loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(24, 24, 24, 0.74);  
        display: grid;
        place-items: center;
        z-index: 9999;
        transition: opacity 1s ease-in-out;
    }

     .spinner {
        width: 180px;                    
        height: 180px;
        border-radius: 50%;
        border: 10px solid transparent;   
        border-top: 2px solid rgba(125, 23, 215, 0.89);  
        border-right: 2px solid rgba(89, 20, 227, 0.92);    
        border-bottom: 2px solid rgba(222, 16, 208, 0.93);  
        border-left: 2px solid rgba(255, 0, 0, 0.9);  
        animation: rotate-ring 2s linear infinite; 
    }
 
    .loading-text {
        color: white;
        font-size: 20px;
        font-weight: bold;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 4;
    }

  
    @keyframes rotate-ring {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    /* ========================= Pagination ==================================  */
    .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
        }

        .pagination a {
            margin: 0 10px;
            padding: 8px 15px;
            text-decoration: none;
            color: #936bff;
            border: 1px solid #936bff;
            border-radius: 5px;
            font-size: 14px;
            transition: background-color 0.3s, color 0.3s;
        }

        .pagination a:hover {
            background: linear-gradient(45deg, #936bff ,#0285ff);
            color: #fff;
        }

        .pagination .active {
            background: linear-gradient(45deg, #0285ff, #936bff);
            color: #b3b0ba;
            font-weight: bold;
        }

        .pagination a:disabled {
            color: #936bff;
            border: 1px solid #936bff;
            pointer-events: none;
        }


    /* =================== Responsive Styling for reCAPTCHA ================== */
        .g-recaptcha {
            display: flex;
            justify-content: center;
            margin: 10px auto;
            max-width: 100%;
        }

      /*================================ eye btn  =============================== */
        .eye-btn {
            border: 1px solid rgba(173, 44, 44, 0.2) !important;
            border-radius: 50%;
            padding: 6px 10px;
            transition: all 0.3s ease-in-out;
        }
        .eye-btn:hover {
            border-color: #0ef;
            box-shadow: 0 0 10px rgba(155, 190, 192, 0.5) !important;
        }
        .eye-btn i {
            transition: transform 0.3s ease-in-out;
        }
    /* ======================== Responsive Styling =============================*/

    @media (max-width: 768px) {
        .container {
            max-width: 100%;
            padding: 20px;
            box-shadow: none;
        }
        h2 {
            font-size: 20px;
            text-align: center;
        }
        .btn-submit {
            font-size: 14px;
            padding: 10px;
        }
    }
     @media (max-width: 480px) {
            .g-recaptcha {
                transform: scale(0.9); /* Slightly smaller on small screens */
                transform-origin: center;
            }
        }