/* Ảnh chụp màn hình */
.md-content img.screenshot {
    display: block;
    max-height: 90%;
    max-width: 110%;
    margin: 0.5rem auto;
    border: 1.5px solid #000;
    border-radius: 8px; /* tùy chọn */
}

/* Ảnh chụp màn hình Mobile */
.md-content img.mobilescreenshot {
    display: block;
    max-width: 35%;
    min-width: 220px;
    max-height: 700px;
    width: auto;
    height: auto;
    margin: 0.5rem auto;
    border: 1px solid #000;
    border-radius: 12px;
}

/* Icon trong nội dung */
.md-content img.inline-icon {
    display: inline-block;
    border: none;
    margin: 0 -3px;
    vertical-align: middle;
    transform: scale(0.9);
    transform-origin: center;
}

.md-header__button.md-logo {
    display: inline-flex !important;
    padding: 0 .15rem;
}

/* Tăng kích thước logo */
.md-header__button.md-logo img,
.md-header__button.md-logo svg {
    height: 30px;
    width: auto;
}

.md-header__inner {
    height: 56px;
}

.md-header__title {
    display: flex;
    align-items: center;
    gap: .35rem;
    margin-left: -10px;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    margin-left: .25rem;
    font-size: 1rem;
    letter-spacing: .2px;
}

/*Tabs Link*/

.md-tabs__link {
    font-family: "Inter", sans-serif;
    font-size: 0.84rem;      
    font-weight: 500;         
    letter-spacing: 0.2px;
    text-transform: none;
}

.md-tabs__link--active {
    color: #fff;
    font-weight: 600;
    border-bottom: 2px solid #2f7ebe;
}

.md-tabs__link:hover {
    color: #fff !important;
    opacity: 1;
}

/*Text*/

.md-typeset p,
.md-typeset li {
    font-size: 0.8rem;
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.7;
}

/* Theme */
[data-md-color-scheme="default"] {
    --md-primary-fg-color: #1565C0;
    --md-primary-fg-color--light: #1E88E5;
    --md-primary-fg-color--dark: #0D47A1;
}

[data-md-color-scheme="slate"] {
    --md-primary-fg-color: #1565C0;
    --md-primary-fg-color--light: #1E88E5;
    --md-primary-fg-color--dark: #0D47A1;
}

/* Footer */
.md-footer {
    background-color: #1565C0 !important;
    color: #fff;
}

/* Copyright */
.md-footer-meta {
    background-color: #1565C0 !important;
}

/* Text */
.md-footer-meta__inner,
.md-footer-copyright,
.md-footer-copyright a {
    color: #fff !important;
}

/* Sidebar */
.md-sidebar .md-nav--primary
.md-nav__list
> .md-nav__item
> .md-nav
> .md-nav__list
> .md-nav__item
> label.md-nav__link {
    font-weight: 700 !important;
    font-size: 0.8rem;
    color: #1565C0 !important;
    letter-spacing: 0.2px;
}

/* Sidebar hover */
.md-nav__link:hover {
    color: #1565C0 !important;
}

/* Tabs hover */
.md-tabs__link:hover {
    color: #ffffff !important;
}

/* Content links hover */
.md-content a:hover {
    color: #1565C0 !important;
}


/* ===== Note (Lưu ý) ===== */
.md-typeset .admonition.note,
.md-typeset details.note {
    border: 1px solid #BBDEFB;
    border-left: 5px solid #1976D2;
    border-radius: 10px;
    background: #F8FBFF;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
    overflow: hidden;
    margin: 1.2em 0;
}

/* Tiêu đề */
.md-typeset .note > .admonition-title,
.md-typeset details.note > summary {
    background: #E3F2FD;
    color: #0D47A1;
    font-weight: 600;
    font-size: 0.75rem; 
    border-bottom: 1px solid #BBDEFB;
}

/* Icon */
.md-typeset .note > .admonition-title::before,
.md-typeset details.note > summary::before {
    color: #1976D2;
}

/* Nội dung */
.md-typeset .admonition.note > *:not(.admonition-title),
.md-typeset details.note > *:not(summary) {
    font-size: 0.75rem;
    line-height: 1.7;
}

/* Danh sách trong Note */
.md-typeset .admonition.note ul,
.md-typeset details.note ul {
    margin-top: 0.5rem;
    margin-bottom: 0.3rem;
}

.md-typeset .admonition.note li,
.md-typeset details.note li {
    margin-bottom: 0.45rem;
}

/* ===== Compact Button ===== */
.md-typeset .md-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .3rem;

    padding: .42rem .95rem;
    min-height: 30px;

    background: linear-gradient(135deg, #1976D2, #1565C0);
    color: #fff !important;

    border: none;
    border-radius: 8px;

    font-size: .72rem;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none !important;

    box-shadow: 0 2px 8px rgba(21,101,192,.18);

    transition: all .2s ease;
}

.md-typeset .md-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgb(255, 255, 255);
    background: linear-gradient(135deg, #1E88E5, #1976D2);
    color: #fff !important;
}

.md-typeset .md-button::after {
    content: "❯";
    font-size: .6rem;
    margin-left: .15rem;
    transition: transform .2s;
}

.md-typeset .md-button:hover::after {
    transform: translateX(3px);
}

/* =====Thanh Search ===== */
.md-search {
    max-width: 240px;
    margin-left: 1rem;
}

.md-search__input {
    font-size: .85rem;
}