/* Modern theme customizations */

/* Black header */
.md-header {
    background-color: black;
}

/* Smooth transitions */
* {
    transition: background-color 0.25s, color 0.25s;
}

/* Modern sidebar navigation */
.md-nav--primary .md-nav__item--active > .md-nav__link {
    font-weight: 700;
}

.md-sidebar {
    backdrop-filter: blur(10px);
}

/* Modern card-like sections */
.md-content article > * {
    margin-bottom: 1.5rem;
}

/* Enhanced code blocks */
.highlight {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Rounded corners for images */
.md-content img {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Better hover effects */
.md-nav__link:hover {
    color: var(--md-accent-fg-color);
}

/* Modern search */
.md-search__form {
    border-radius: 24px;
}

.md-sidebar--secondary {
    visibility: hidden;
}
