        /* 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;
        }

/* Gallery container */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

/* Images inside the gallery */
.gallery img {
    width: 100%;
height: auto; /* Automatically adjusts the height to maintain aspect ratio */
    border-radius: 8px;
   object-fit: cover; /* Ensures the image covers the entire grid cell without distortion */
}

/* Style for landscape images */
.gallery img.landscape {
    grid-column: span 2;
    width: 100%;
    object-fit: cover;
}

/* Fullscreen overlay for viewing images */
.fullscreen-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
   background-image: url('path-to-your-background-image.png');
   background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease-in-out;
}

.fullscreen-overlay img {
    border-radius: 12px;
    max-width: 90%;
    max-height: 90%;
   object-fit: contain; /* Maintains the aspect ratio while fitting the image within the view */
}

.fullscreen-overlay .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 24px;
    font-family: 'Hina Mincho', serif;
    cursor: pointer;
    background-color: rgba(255, 182, 193, 0.8); /* Light pink with transparency */
    padding: 10px;
    border-radius: 100%;
    border: 2px solid #fff;
    transition: transform 0.3s ease;
cursor: url('path-to-your-custom-cursor.png'), auto;
}

.fullscreen-overlay .close-btn:hover {
    transform: scale(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.fullscreen-overlay.active {
    display: flex;
    animation: fadeIn 0.5s ease-in-out;
}

.fullscreen-overlay .caption {
    position: absolute;
    bottom: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 16px;
    padding: 10px;
    border-radius: 8px;
    width: 80%;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

        /* 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-y: auto; /* Allow scrolling */
    background-color: #fff;
    border-radius: 6px;
    padding: 15px;
    padding-top: 40px; /* Adjust padding to prevent overlap with the title */
    box-sizing: border-box;
    position: relative;
}

        /* 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;
        }

        .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 */
    }
}

