* {
    padding: 0;
    margin: 0;
    font-family: 'Noto Sans Devanagari','Devanagari','poppins', 'sans-serif';
    box-sizing: border-box;
}

body {
    background-color: #2e364a;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 100px auto;
}

.container {
    padding: 10px 50px;
    position: relative;
    width: 50%;
    animation: movedown 1s linear forwards;
    opacity: 0;
}

@keyframes movedown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.textbox {
    padding: 20px 30px;
    background-color: #fff;
    position: relative;
    border-radius: 6px;
    font-size: 15px;
}

.left-container {
    left: 0;
}

.right-container {
    left: 50%;
}

.container img {
    position: absolute;
    width: 40px;
    border-radius: 50%;
    right: -20px;
    top: 32px;
    z-index: 10;
}

.right-container img {
    left: -20px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 100%;
    background: #fff;
    top: 0;
    left: 50%;
    margin-left: -3px;
    z-index: -1;
    animation: moveline 6s linear forwards;

}

@keyframes moveline {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}

.textbox h2 {
    font-weight: 600;
}

.textbox small {
    display: inline-block;
    margin-bottom: 15px;
}

.left-container-arrow {
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #fff;
    right: -15px;
}

.right-container-arrow {
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #fff;
    left: -15px;
}

/* Responsive */
@media screen and (max-width:600px) {

    .timeline {
        margin: 50px auto;
    }

    .timeline::after {
        left: 31px;
    }

    .container {
        width: 100%;
        padding-left: 80px;
        padding-right: 25px;
    }

    .textbox {
        font-size: 13px;
    }

    .textbox small {
        margin-bottom: 10px;
    }

    .right-container {
        left: 0;
    }

    .left-container img, .right-container img {
        left: 10px;
    }

    .left-container-arrow,
    .right-container-arrow {
        border-right: 15px solid #fff;
        border-left: 0;
        left: -15px;

    }


}

.textbox:hover {
    cursor: pointer;
    background: #dee88e;
}
.post-body {
    background-color: #34373f ; /* Lighter background color */
    font-family: Surabhi,Noto Sans Devanagari,Devanagari,sans-serif; /* Consider a more readable font */
    color: hsl(0, 0%, 0%)   ; /* Ensure good text contrast */
}
.post-header{
    background-color: #e8efae  ; /* Softer background for post data */
    max-width: 900px; /* Limit width for better readability */
    margin: 10px auto; /* Center the container */
    padding: 1rem; /* Add padding around the content */
    border-radius: 15px; /* Rounded corners for visual appeal */


}
.post-title {
    text-align: center;
    font-size: 2.5rem; /* Adjust font size as needed */
    margin-bottom: 0.5rem; /* Add spacing below the title */
}
.post-subtitle {
    text-align: center;
    font-size: 1.2rem; /* Adjust font size as needed */
    margin-bottom: 1rem; /* Add spacing below the subtitle */
}
.post-img{
    margin-bottom: 0.5rem;
}
.post-img img {
    display: block;
    width: 900px;
    border-radius: 15px;
    height: 250px;
    margin-left: auto;
    margin-right: auto;
  }

.post-data-container {
    background-color: #e0e6ed  ; /* Softer background for post data */
    max-width: 900px; /* Limit width for better readability */
    margin: 0 auto; /* Center the container */
    padding: 1rem; /* Add padding around the content */
    border-radius: 15px; /* Rounded corners for visual appeal */
}
.post-data {
    /* No need for additional background color here */
    font-size: 1.2rem; /* Adjust font size as needed */
    line-height: 2; /* Improve readability with good line spacing */


}
.topHeading{
    text-align: center;
    color: red;
}
.addNewPostBtn{
    padding:10px;
    background:wheat;
    color:green;
    font-size:medium;
}
.adminPageEdit{
    text-align: center;
    color: red;
    font-size: 15px;
}
/* Navbar */
.navbar {
    background-color: #dee88e;
    color : black;
    padding: 10px 0;
    font-family: 'Noto Sans Devanagari', 'Devanagari', 'poppins', 'sans-serif';
}
.navbar-nav {
    list-style: none;
    color : black;
    padding: 10px;
}
.nav-item{
    color: hsl(0, 0%, 0%)   ;
    display: inline;
/*    disply inline property to show all the navbar items into 1 row not in multiple rows*/
    color : black;
    margin-right: 20px; /* optional, adds some spacing between list items */
}
/*Nav bar css closed    */


/* Mobile-friendly adjustments */
@media (max-width: 800px) {
    .post-header{
        max-width: 450px; /* Limit width for better readability */
    }
    .post-title {
        font-size: 2rem; /* Slightly smaller title on smaller screens */
    }

    .post-data-container {
        padding: 0.75rem; /* Slightly less padding on smaller screens */
        max-width: 450px;
    }
    .post-img img {
        max-width: 400px;
        height: 250px;
      }
}
#quill-container{
    border: none !important; /* Remove the border */
    box-shadow: none !important; /* Remove any shadow */
    padding: 0; /* Optional: Adjust padding if needed */
    font-size: 18px;
}
