/* 📖 Make Content Flow Like a Book */
.md-content {
    max-width: 1600px;
    margin: auto;
    padding: 60px 20px;
}
.md-grid {
    max-width: 1600px; 
}

.md-nav {
    max-width: 144px;
}

/* 🛑 Remove Documentation Look */
.md-header, .md-sidebar--secondary {
    display: none !important;
}


/* ✅ Ensure Text Wraps Properly */
.md-typeset {
    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: normal;
}

/* 📜 Add Indents for a Book Feel */
p {
    text-align: justify;
}

/* 📌 Center Images */
img {
    display: block;
    margin: auto;
    max-width: 100%;
}

a:hover {
    text-decoration: underline;
}


.swiper {
    width: 100%;
    height: 50vw;
    max-height: 600px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-title {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.7rem;
    font-weight: bold;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 10;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.swiper-button-next,
.swiper-button-prev {
    z-index: 100;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    border-radius: 50%;
    padding: 10px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px;
    color: #ffffffb0;
}

.swiper-pagination-bullet-active {
    background: #686868 !important;
}
