        /* General Styles */

        @font-face {
            font-family: 'Civette';
            src: url('/fonts/Civette-Regular.otf') format('opentype');
            font-weight: bold;
            font-style: normal;
            }

        body, html {
            margin: 0;
            padding: 0;
            font-family: 'Civette', 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; /* Ensures the image covers the entire background */
    background-position: center; /* Centers the background image */
    background-attachment: fixed; /* Fixes the background image in place */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    margin: 0; /* Removes default margin */
    padding: 0; /* Removes default padding */
}

/* Wrapper to use flex layout */
.wrapper {
    display: flex;
    height: 100vh;
    overflow: hidden; /* Prevents overflow */
}

        /* Left Column (30%) */
        .left-column {
            width: 30%;
            height: 100vh;
            position: fixed;
            top: 0;
            left: 0;
            background-color: transparent;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            box-sizing: border-box;
            max-width: 100%;
            max-height: 100%;
        }

/* Right Column (70%) */
.right-column {
    margin-left: 30%;
    width: 70%;
    height: 100vh;
    padding: 40px; /* Increased padding for more space around the box */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 100%;
    max-height: 100%;
}

/* Fixed box for articles */
.fixed-box {
    position: fixed;
    top: 20px; /* Space from the top */
    bottom: 20px; /* Space from the bottom */
    left: 35%; /* Add some space from the left */
    right: 15%; /* Add some space from the right */
    width: auto; /* Allow the left and right properties to control the size */
    background: linear-gradient(to bottom, #fef3f1, #efdbda);
    border: 2px solid #fff;
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 50%;
    max-height: 100%;
}

/* Inner white box for article content */
.inner-box {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: #fff;
    border-radius: 6px;
    padding: 15px;
    box-sizing: border-box;
}


/* Image at the top of the left column */
.left-column img {
    width: auto; /* Maintain aspect ratio */
    height: auto; /* Maintain aspect ratio */
    max-width: 90%; /* Slightly larger width */
    max-height: 40%; /* Slightly larger height */
    margin-bottom: 10px; /* Decreased margin below the image */
}

        /* Heading/Title Styles */
/* Site Title Container */
.site-title-container {
    display: inline-block; /* Make the title container fit the title's width */
    background: linear-gradient(to bottom, #fef3f1, #efdbda); /* Pink gradient box */
    border: 2px solid #fff; /* White border */
    border-radius: 8px; /* Rounded corners */
    padding: 10px 20px; /* Padding around the title text */
    text-align: center; /* Center text inside the box */
    margin-bottom: 15px; /* Add space below the title */
    box-sizing: border-box;
    max-width: 100%;
    max-height: 100%;
}

/* Site Title Text */
.site-title {
    font-family: 'Civette', serif; /* Apply Yuji Syuku to site title */
    font-size: 23px; /* Adjust font size as needed */
    margin: 0; /* Remove margin */
    background: none; /* No gradient on the text itself */
    color: #ffffff; /* Solid color text */
}

/* Navigation Menu Box */
.nav-menu-container {
    width: 65%;
    background: linear-gradient(to bottom, #fef3f1, #efdbda); /* Pink gradient box */
    border: 2px solid #fff;
    border-radius: 8px;
    padding: 10px; /* Decreased padding inside the menu container */
    box-sizing: border-box;
    max-width: 80%;
    max-height: 100%;
}

/* Navigation Menu */
.nav-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.nav-menu li {
    margin: 8px 0; /* Decreased margin between buttons */
}

/* Navigation Menu Buttons - Alternating Colors */
.nav-menu a:nth-child(odd) {
    background-color: #fff; /* White for odd buttons */
}

.nav-menu a:nth-child(even) {
    background-color: #fff; /* White for even buttons */
}

.nav-menu a {
    text-decoration: none;
    color: #efdbda; /* Pastel pink text */
    font-size: 16px;
    display: block;
    width: auto; /* Adjust width */
    max-width: 200px; /* Optional: Maximum width */
    padding: 8px 15px; /* Adjust padding */
background-color: #fff; /* White buttons */
    border: 2px solid #fff; /* White outer edge */
    border-radius: 6px; /* Rounded corners */
    margin: 0 auto; /* Center buttons */
    text-align: center; /* Center text */
    font-family: 'Civette', serif; /* Font */
    transition: background-color 0.3s ease; /* Smooth transition */
}

/* Hover Effect for Both Odd and Even */
.nav-menu a:hover {
    background-color: #efdbda; /* Hover effect color */
    color: #fff; /* White text on hover */
}

/* Copyright Notice */
.copyright {
    position: absolute;
    bottom: 10px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
    font-family: 'Civette', 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 */
}

/* Custom Scrollbar for Right Column */
.right-column::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

.right-column::-webkit-scrollbar-track {
    background: transparent; /* Transparent track */
}

.right-column::-webkit-scrollbar-thumb {
    background-color: #fef3f1; /* Pastel pink thumb */
    border-radius: 10px; /* Rounded corners for the thumb */
    border: 1px solid #fef3f1; /* Adds some space around the thumb */
    background-clip: padding-box; /* Keeps the border and thumb separate */
}

/* Firefox Custom Scrollbar */
.right-column {
    scrollbar-width: thin;
    scrollbar-color: #fef3f1 transparent; /* Pastel pink thumb, transparent track */
    scrollbar-radius: 10px; /* Rounded corners for Firefox */
}

/* Firefox Scrollbar Thumb Rounded Edges */
.right-column::-moz-scrollbar-thumb {
    border-radius: 10px; /* Rounded corners for Firefox scrollbar thumb */
}

        /* Article styling */
        article {
            margin-bottom: 40px;
        }

        article h2 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        article p {
            font-size: 16px;
            line-height: 1.5;
        }
          
.indented-paragraph {
    padding-left: 20px !important; /* Adjust this value to increase/decrease the indentation */
    margin-bottom: 15px !important; /* Add spacing after paragraph if necessary */
    line-height: 1.5 !important; /* Adjust line height for readability */
}
        
.tip-box {
    border: 2px dashed #efdbda !important; /* Matching the divider's border color */
    border-radius: 8px !important; /* To create rounded corners, if desired */
    padding: 15px !important; /* Padding inside the box */
    margin: 20px 0 !important; /* Add some spacing around the box */
    background-color: #fff !important; /* Set a background color if needed */
}
        
/* Image container styling */
.image-container {
    margin: 20px 0 !important;
    text-align: center !important;
    position: relative !important;
}

/* Image styling */
.blog-image {
    max-width: 100% !important; /* Allow the image to fit the container */
    height: auto !important; /* Maintain aspect ratio */
    border-radius: 6px !important;
    display: block !important; /* Center the image */
    margin: 0 auto !important; /* Add auto margin for centering */
}

/* Caption styling */
.image-caption {
    font-size: 14px;
    color: #efdbda;
    margin-top: 8px;
    font-family: 'Civette', 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 */
}

.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;
        }
        
        /* VN Theme link */
.vn-link {
    display: inline-block;
    padding: 10px 20px;
    color: #efdbda; /* Pastel pink text color */
    text-decoration: none;
    font-family: 'Civette', serif; /* Your chosen font */
    font-size: 14px;
}

/* Add a hover effect */
.vn-link:hover {
    color: #000000;
}

.decorative-divider {
    border: 0;
    height: 1px;
    background: repeating-linear-gradient(to right, #fef3f1, #efdbda 5px, transparent 5px, transparent 10px);
    margin: 20px 0;
}

/* Add this media query for mobile responsiveness */
@media (max-width: 768px) {
    .wrapper {
        flex-direction: column; /* Stack columns on top of each other */
        height: auto; /* Adjust height */
    }

    .left-column,
    .right-column {
        width: 100%; /* Full width for both columns */
        height: auto; /* Allow height to adjust */
        position: relative; /* Remove fixed positioning */
    }

    .left-column {
        padding: 10px; /* Reduced padding for smaller screens */
    }

    .right-column {
        padding: 20px; /* Adjust padding as needed */
        margin-left: 0; /* Remove left margin */
    }

    .fixed-box {
        width: 90%; /* Adjust fixed box width */
        left: 5%; /* Center the fixed box */
        right: 5%; /* Center the fixed box */
    }

    /* Adjust other styles if necessary */
    .site-title-container,
    .nav-menu-container {
        width: 90%; /* Ensure navigation and title are full width */
        max-width: 100%; /* Avoid overflow */
        margin: 0 auto; /* Center containers */
    }
    
    .blog-image {
        max-width: 90%; /* Adjusted to fit smaller screens */
        margin: 10px auto; /* Add margin for breathing room */
    }
}

