html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body.demo-body {
    font-family: "Poppins", sans-serif;
    background: #FFF;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

body.demo-body .container {
    max-width: 1280px;
    margin: 0 auto;
    padding-inline: 24px;
    width: 100%;
    box-sizing: border-box;
}

.demo-header-container {
    flex: 0 0 auto;
    background-color: #FFF;
    border-bottom: thin solid #F2F4F7;
    z-index: 999;
}

.demo-header {
    padding-block: 12px;
}

.demo-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 40px;
}

.demo-header-logo {
    display: inline-flex;
    align-items: center;
}

.demo-header-logo img {
    display: block;
    height: auto;
}

.demo-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.demo-header .lang-dropdown {
    max-width: 120px;
}

.demo-header .lang-dropdown .selected {
    gap: 5px;
    padding: 4px;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #D0D5DD;
    background-color: transparent;
}

.demo-header .lang-dropdown .selected svg {
    width: 15px;
    height: 15px;
}

.demo-header .lang-dropdown .selected .lang {
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
}

.demo-header .lang-dropdown .options {
    padding: 0;
    border: 1px solid #D0D5DD;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.demo-header .lang-dropdown .options div {
    padding: 8px 10px;
    border-radius: 6px;
}

.demo-header .lang-dropdown .options div:not(:last-child) {
    margin: 0;
}

.demo-page {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
}

.demo-iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .demo-header {
        padding-block: 8px;
    }

    body.demo-body .container {
        padding-inline: 16px;
    }

    .demo-header-actions {
        gap: 12px;
    }
}
