        /* General Styles */
        body, html {
            margin: 0;
            padding: 0;
            font-family: 'Hina Mincho', serif;
            height: 100%;
            overflow: hidden;
            background-color: #fefefe;
        }
        
    .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 */
}
        
    .center-text {
    text-align: center;
}
        
    .link-container {
    text-align: center;
    font-size: 1.0em;
}

.link-container a {
    text-decoration: none;
    color: #efdbda;
    padding: 0 10px; /* Add padding to space out the links from the separators */
}

.separator {
    padding: 0 10px; /* Add padding to space out the separators from the links */
    color: #efdbda;
}

        .link-container a:hover {
            color: #000000;
        }

        /* 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;
        }

        /* Archive and Tags Boxes */
        .archive-box, .tags-box {
            width: 100%;
 height: 45%; /* Adjusted to fit two boxes within the right column */
            background: linear-gradient(to bottom, #fef3f1, #efdbda);
            border: 2px solid #fff;
            border-radius: 8px;
            padding: 20px; /* Adjusted for consistency with the center column */
            box-sizing: border-box;
            margin-bottom: 20px;
   position: relative; /* Make the box positioning relative */
overflow: hidden; /* Ensure the inner content can be scrolled */
        }

/* Inner white box for Archive and Tags content */
.archive-box .inner-box, .tags-box .inner-box {
    width: 100%;
    height: 100%; /* Adjusted for title space */
    overflow: hidden; /* Hide overflow */
    background-color: transparent; /* No background color */
    border-radius: 6px; /* Match the border radius of the box if needed */
    padding: 0; /* Remove padding */
    box-sizing: border-box;
    position: relative;
}

/* Ensure the image fits perfectly within the inner box */
.inner-box .fit-image {
    width: 100%;
    height: 100%; /* Use height 100% to cover the full height */
    object-fit: contain; /* Preserve aspect ratio */
    display: block; /* Remove bottom space under the image */
    border-radius: 6px; /* Match the border radius of the box if needed */
}

        /* 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;
}

    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;
        }

.decorative-divider {
    border: 0;
    height: 1px;
    background: repeating-linear-gradient(to right, #fef3f1, #efdbda 5px, transparent 5px, transparent 10px);
    margin: 20px 0;
}

        /* For clickable tags and archive links */
        .archive-box a, .tags-box a {
            text-decoration: none;
            color: #efdbda;
            cursor: pointer;
            display: block;
            padding: 2px 0;
        }

        .archive-box a:hover, .tags-box a:hover {
            color: #000000;
        }

    
        /* Reset Filters Button Styling */
        .reset-filters-button {
            background-color: #efdbda; /* Pastel pink background */
            color: #fff; /* White text */
            border: 2px solid #fff; /* White border */
            border-radius: 6px; /* Rounded corners */
            padding: 10px 20px; /* Spacing inside the button */
            font-size: 16px; /* Text size */
            font-family: 'Hina Mincho', serif; /* Font matching your theme */
            cursor: pointer; /* Pointer cursor on hover */
            transition: background-color 0.3s ease, color 0.3s ease; /* Smooth color transition */
        }

        /* Button hover effect */
        .reset-filters-button:hover {
            background-color: #fff; /* White background on hover */
            color: #efdbda; /* Pastel pink text on hover */
        }

        /* Button focus effect */
        .reset-filters-button:focus {
            outline: none; /* Remove default focus outline */
            box-shadow: 0 0 3px 2px rgba(239, 219, 218, 0.5); /* Add a pastel pink glow */
        }

/* 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 */
}

/* 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 */
    }
}
