        /* General Styles */
        body, html {
            margin: 0;
            padding: 0;
            font-family: 'Hina Mincho', serif;
            height: 100%;
            overflow: hidden;
            background-color: #fefefe;
        }

        /* Body Background */
        body {
            background-image: url('minggegusha_manga_landscape_rose_garden_black_and_white_pastel__e26bdcf8-24a7-4d26-8ec9-8bcb03d015c8.png'); /* Path to your background image */
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            background-repeat: no-repeat;
        }

        /* Left Column (Navigation Menu) */
        .left-column {
            width: 20%;
            height: 100vh;
            position: fixed;
            top: 0;
            left: 0;
            background-color: transparent;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px;
            box-sizing: border-box;
        }

        /* Center Column (Blog Posts) */
        .center-column {
            margin-left: 22%;
            margin-right: 22%;
            width: 56%;
            height: 100vh;
            padding: 20px;/* Adjusted to maintain the width proportional to the new margins */
            box-sizing: border-box;
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }

        /* Fixed box for articles */
        .fixed-box {
            width: 100%;
            height: 90%;
            background: linear-gradient(to bottom, #fef3f1, #efdbda);
            border: 2px solid #fff;
            border-radius: 8px;
            padding: 20px;
            box-sizing: border-box;
            overflow: hidden;
        }

        /* Inner white box for article content */
        .inner-box {
            width: 100%;
            height: 100%;
            overflow-y: auto;
            background-color: #fff;
            border-radius: 6px;
            padding: 15px;
	 padding-top: 30px; /* Add padding to avoid overlap with the title */
            box-sizing: border-box;
            position: relative;
        }

        /* Right Column (Archive and Tags) */
        .right-column {
            width: 20%;
            height: 100vh;
            position: fixed;
            top: 0;
            right: 0;
            background-color: transparent;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px;
		gap: 20px; /* Add spacing between boxes and button */
            box-sizing: border-box;
        }

        /* Navigation Menu Box */
        .nav-menu-container {
            width: 100%;
            background: linear-gradient(to bottom, #fef3f1, #efdbda);
            border: 2px solid #fff;
            border-radius: 8px;
            padding: 10px;
            box-sizing: border-box;
        }

        /* Navigation Menu */
        .nav-menu {
            list-style-type: none;
            padding: 0;
            margin: 0;
            text-align: center;
        }

        .nav-menu li {
            margin: 8px 0;
        }

        .nav-menu a {
            text-decoration: none;
            color: #efdbda;
            font-size: 16px;
            display: block;
            width: auto;
            padding: 8px 15px;
            background-color: #fff;
            border: 2px solid #fff;
            border-radius: 6px;
            margin: 0 auto;
            text-align: center;
            font-family: 'Hina Mincho', serif;
            transition: background-color 0.3s ease;
        }

        /* Hover Effect */
        .nav-menu a:hover,
        .nav-menu a.current-page {
            background-color: #efdbda;
            color: #fff;
        }

        /* Scrollbar for Inner Box */
        .inner-box::-webkit-scrollbar {
            width: 12px;
        }

        .inner-box::-webkit-scrollbar-track {
            background: transparent;
        }

        .inner-box::-webkit-scrollbar-thumb {
            background-color: #fef3f1;
            border-radius: 10px;
            border: 1px solid #fef3f1;
            background-clip: padding-box;
        }

        /* Firefox Custom Scrollbar */
        .inner-box {
            scrollbar-width: thin;
            scrollbar-color: #fef3f1 transparent;
        }

        /* Article Styling */
        article {
            margin-bottom: 40px;
        }

.date-circle {
    background-color: #efdbda; /* Light pink pastel color */
    color: #fff;
    font-size: 14px;
    border-radius: 50%;
    padding: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    float: left;
    margin-right: 15px;
}

        article h2 {
            font-size: 24px;
            color: white;
            margin-bottom: 5px;
background: linear-gradient(90deg, #efdbda 0%, #fef3f1 100%);
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
}

article h2 img {
    max-width: 100%; /* Ensure the image doesn’t overflow */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Center the image if necessary */
    margin: 0 auto; /* Centering */
}

        .post-info {
            font-size: 14px;
            color: #efdbda;
            margin-bottom: 10px;
        }
        
.indented-paragraph {
    padding-left: 20px; /* Adjust this value to increase/decrease the indentation */
    margin-bottom: 15px; /* Add spacing after paragraph if necessary */
    line-height: 1.5; /* Adjust line height for readability */
}
        
.tip-box {
    border: 2px dashed #efdbda; /* Matching the divider's border color */
    border-radius: 8px; /* To create rounded corners, if desired */
    padding: 15px; /* Padding inside the box */
    margin: 20px 0; /* Add some spacing around the box */
    background-color: #fff; /* Set a background color if needed */
}
        
/* Image container styling */
.image-container {
    margin: 20px 0;
    text-align: center;
    position: relative;
}

/* Image styling */
.blog-image {
    max-width: 100%; /* Allow the image to fit the container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 6px;
    display: block; /* Center the image */
    margin: 0 auto; /* Add auto margin for centering */
}

@media (max-width: 768px) {
    .blog-image {
        max-width: 90%; /* Adjusted to fit smaller screens */
        margin: 10px auto; /* Add margin for breathing room */
    }
}

/* Caption styling */
.image-caption {
    font-size: 14px;
    color: #efdbda;
    margin-top: 8px;
    font-family: 'Hina Mincho', serif;
}

.slideshow {
    position: relative;
    max-width: 600px;
    margin: auto;
    border: 2px dashed #efdbda;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    padding-bottom: 20px; /* Add bottom padding for space */
}

.slide {
    display: none;
    padding: 20px;
}

input[type="radio"] {
    display: none; /* Hide radio buttons */
}

/* Show the selected slide */
input[type="radio"]:checked + .slide {
    display: block;
}

.controls {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.control {
    cursor: pointer;
    width: 40px; /* Set width and height for circular buttons */
    height: 40px; /* Make height equal to width for circles */
    background: transparent;
    border-radius: 50%; /* Make buttons circular */
    margin: 0 10px; /* Add horizontal space between buttons */
    display: flex; /* Center the text within the circle */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    color: #efdbda; /* Set text color to pink */
    border: 2px dashed #efdbda;
}

/* Change styles on hover */
.control:hover {
    background: #efdbda; /* Change background to pink on hover */
    color: white; /* Change text color to white on hover */
    border: 2px dashed #efdbda;
}

/* Control button styles for active state */
input[type="radio"]:checked#slide1 ~ .controls .control:nth-child(1),
input[type="radio"]:checked#slide2 ~ .controls .control:nth-child(2),
input[type="radio"]:checked#slide3 ~ .controls .control:nth-child(3) {
    background: white; /* Change background to white for active button */
    color: #efdbda; /* Change text color to pink for active button */
    
}

/* Keep hover effect for the active button */
input[type="radio"]:checked#slide1 ~ .controls .control:nth-child(1):hover,
input[type="radio"]:checked#slide2 ~ .controls .control:nth-child(2):hover,
input[type="radio"]:checked#slide3 ~ .controls .control:nth-child(3):hover {
    background: #efdbda; /* Change background to pink on hover */
    color: white; /* Change text color to white on hover */
}

/* Control button styles for hover */
.control:hover {
    background: #efdbda; /* Change background to pink on hover */
    color: white; /* Change text color to white on hover */
}

/* Rounded corners for images */
.slide img {
    width: 100%; /* Ensure the image fills the slide */
    border-radius: 10px; /* Adjust the value for desired roundness */
    display: block; /* Prevents space below images */
    margin: auto; /* Centers the image horizontally */
    margin-bottom: 20px; /* Add bottom margin for space */
}

.end-circle {
    display: inline-block; /* Keeps it inline */
    width: 8px; /* Adjust the size as needed */
    height: 8px;
    background-color: #efdbda; /* Pastel pink color */
    border-radius: 50%; /* Makes the shape a circle */
    margin-left: 5px; /* Adjust spacing from the text */
    vertical-align: middle; /* Aligns with the text */
}

/* VN Theme link */
.vn-link {
    display: inline-block;
    padding: 10px 20px;
    color: #efdbda; /* Pastel pink text color */
    text-decoration: none;
    font-family: 'Hina Mincho', serif; /* Your chosen font */
    font-size: 14px;
}

/* Add a hover effect */
.vn-link:hover {
    color: #000000;
}

/* Copyright Notice */
.copyright {
    position: absolute;
    bottom: 10px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
    font-family: 'Hina Mincho', serif; /* Apply Hina Mincho font */
    font-size: 8px; /* Smaller font size */
    color: white; /* White text */
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; /* Black outline */
    text-align: center;
    white-space: nowrap; /* Prevents the text from wrapping to the next line */
}

/* Media Queries for Mobile Devices */
@media (max-width: 768px) {
    .left-column, .right-column {
        width: 100%;
        height: auto;
        position: static;
        display: block;
    }

    .left-column {
        margin-bottom: 20px;
    }

    .right-column {
        margin-bottom: 20px;
    }

    .center-column {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .fixed-box {
        height: auto;
    }

    .archive-box, .tags-box {
        height: auto;
    }

    .nav-menu-container, .fixed-box {
        width: 100%;
    }
}

/* Stack columns vertically on screens smaller than 768px */
@media (max-width: 768px) {
    /* Ensure the body is not hiding overflow */
    body {
        overflow: auto; /* Allow scrolling */
    }

    .left-column, .right-column {
        width: 100%;
        height: auto;
        position: static;
        display: block;
    }

    .left-column {
        margin-bottom: 20px;
    }

    .right-column {
        margin-bottom: 20px;
    }

    .center-column {
        margin-left: 0;
        margin-right: 0;
        height: auto; /* Auto height */
        width: 100%;
    }

    .fixed-box {
        position: static; /* Remove fixed positioning */
        top: auto; /* Reset top position */
        bottom: auto; /* Reset bottom position */
        left: 0; /* Reset left position */
        right: 0; /* Reset right position */
        width: 100%; /* Full width */
        background: linear-gradient(to bottom, #fef3f1, #efdbda); /* Maintain background gradient */
        box-shadow: none; /* Remove shadow if any */
        padding: 10px; /* Adjust padding for smaller screens */
    }

    /* Ensure content in the inner box fits */
    .inner-box {
        height: auto; /* Auto height */
        overflow: auto; /* Allow scrolling */
    }
    
    .site-title-container {
        padding: 5px; /* Adjust padding */
    }
    
    .site-title {
        font-size: 20px; /* Adjust font size */
    }
    
    .nav-menu a {
        font-size: 14px; /* Adjust font size */
        padding: 5px 10px; /* Adjust padding */
    }
    
    .archive-box, .tags-box {
        height: auto;
    }

    .copyright {
        font-size: 6px; /* Adjust font size */
    }

    .date-circle {
        width: 50px; /* Adjust size */
        height: 50px; /* Adjust size */
        padding: 5px; /* Adjust padding */
    }

    article h2 {
        font-size: 20px; /* Adjust font size */
    }

    article p {
        font-size: 14px; /* Adjust font size */
    }

    .vn-link {
        font-size: 12px; /* Adjust font size */
        padding: 5px 10px; /* Adjust padding */
    }

    .decorative-divider {
        margin: 10px 0; /* Adjust margin */
    }
}
