/* ==================== DOCS PAGE ==================== */

.docs-all-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
}

.docs-align-content {
    display: flex;
    flex-direction: column;
    width: 1200px;
    max-width: 90vw;
}

.docs-home-hero {
    padding: 0 0 1.75rem;
    border-bottom: 1px solid var(--border);
}

.docs-home-kicker {
    display: inline-flex;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

.docs-home-hero h1 {
    margin-bottom: 0.5rem;
}

.docs-home-hero p {
    max-width: 640px;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.docs-home-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 1rem;
}

.docs-home-info div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    padding: 0.5rem 0.625rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.docs-home-info span {
    display: block;
    color: var(--text-secondary);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0;
}

.docs-home-info code {
    overflow-wrap: anywhere;
}

.docs-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.docs-quickstart-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.25rem 0 0;
}

.docs-home-section-heading {
    margin: 2rem 0 0.875rem;
}

.docs-home-section-heading h2 {
    margin: 0 0 0.125rem;
    padding: 0;
    border: 0;
}

.docs-home-section-heading p {
    margin: 0;
    max-width: 640px;
    line-height: 1.5;
}

.docs-nav-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 0.875rem;
    padding: 0;
    margin-bottom: 0.5rem;
}

.docs-nav-cards-container--dense {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.docs-nav-cards-link {
    display: block;
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius-lg);
}

.docs-nav-cards-link:focus-visible {
    outline: 3px solid var(--primary-light);
    outline-offset: 3px;
}

.docs-nav-cards {
    min-height: 108px;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    height: 100%;
    padding: 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.docs-nav-cards-link:hover .docs-nav-cards,
.docs-nav-cards-link:focus-visible .docs-nav-cards {
    background: var(--bg-secondary);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.docs-nav-icon-container {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.docs-nav-icon-container--small {
    width: 32px;
    height: 32px;
    min-width: 32px;
}

.docs-nav-icon {
    width: 28px;
    height: 28px;
}

.docs-nav-icon-container--small .docs-nav-icon {
    width: 22px;
    height: 22px;
}

.docs-nav-card-text {
    min-width: 0;
}

.docs-nav-card-text strong {
    display: block;
    margin-bottom: 0.125rem;
    color: var(--text);
    font-size: var(--text-sm);
    line-height: 1.35;
}

.docs-nav-card-text p {
    margin: 0;
    color: var(--text-secondary);
    font-size: var(--text-xs);
    line-height: 1.45;
}

.docs-nav-card-text code {
    overflow-wrap: anywhere;
    font-size: 0.75rem;
}

.docs-container {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    padding: 0 1.5rem 2rem;
}

.docs-sidebar-shell {
    min-width: 0;
}

.docs-sidebar-toggle {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg);
    color: var(--text);
    font: inherit;
    font-size: var(--text-sm);
    font-weight: 600;
    box-shadow: var(--shadow-xs);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.docs-sidebar-toggle:hover,
.docs-sidebar-toggle:focus-visible {
    background: var(--bg-secondary);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.docs-sidebar-toggle:focus-visible {
    outline: 3px solid var(--primary-light);
    outline-offset: 3px;
}

.docs-sidebar-toggle svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.docs-sidebar-shell.is-open .docs-sidebar-toggle svg {
    transform: rotate(180deg);
}

.docs-sidebar {
    position: sticky;
    top: 5rem;
    height: fit-content;
}

.docs-sidebar h3 {
    margin-bottom: 0.75rem;
    font-size: var(--text-xs);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.docs-sidebar ul {
    list-style: none;
    padding: 0;
}

.docs-sidebar ul li {
    margin-bottom: 0.125rem;
}

.docs-sidebar ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    font-size: var(--text-sm);
}

.docs-sidebar ul li a:hover {
    background: var(--bg-tertiary);
    color: var(--text);
}

.docs-content {
    min-width: 0;
    max-width: 900px;
}

.docs-content section {
    margin-bottom: 2.5rem;
}

.docs-content h2 {
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: var(--text-xl);
    font-weight: 600;
}

.docs-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: var(--text-lg);
    color: var(--text);
    font-weight: 600;
}

.docs-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    font-size: var(--text-sm);
}

.docs-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.docs-page-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.docs-page-nav-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.7rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xs);
    color: var(--text);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 500;
    line-height: 1.5;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.docs-page-nav-link:hover,
.docs-page-nav-link:focus-visible {
    background: var(--bg-secondary);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.docs-page-nav-link:focus-visible {
    outline: 3px solid var(--primary-light);
    outline-offset: 3px;
}

.docs-page-nav-link--next {
    justify-content: flex-end;
    text-align: right;
}

.docs-page-nav-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

.docs-page-nav-arrow svg {
    display: block;
    width: 100%;
    height: 100%;
}

.docs-page-nav-link strong {
    color: var(--text);
    font-size: var(--text-base);
    line-height: 1.25;
    margin: 0;
}

.docs-page-nav-link--placeholder {
    visibility: hidden;
    pointer-events: none;
}

.docs-footer h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 1rem;
}

.docs-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
}

.docs-cta {
    text-align: center;
    margin: 2rem 0;
}

/* Docs: Sidebar section headers */
.docs-sidebar h3+ul {
    margin-bottom: 1rem;
}

.docs-sidebar ul li a.active {
    background: var(--bg-tertiary);
    color: var(--primary);
    font-weight: 500;
}

/* Docs: Endpoint badge */
.docs-endpoint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.75rem 0 1rem;
    padding: 0.625rem 0.875rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-family: var(--font-mono);
    font-size: var(--text-sm);
}

.docs-method {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.docs-method--post {
    background: rgba(5, 150, 105, 0.12);
    color: var(--primary-dark);
}

.docs-badge {
    margin-left: auto;
    padding: 0.125rem 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    color: #4f46e5;
    border-radius: var(--radius);
    font-size: var(--text-xs);
    font-weight: 500;
}

/* Docs: Required field marker */
.docs-required {
    color: #f87171;
    font-weight: 700;
    font-size: 0.75rem;
}

/* Docs: Parameter tables */
.docs-params {
    margin: 1rem 0;
}

.docs-params h4 {
    margin-bottom: 0.5rem;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text);
}

.docs-params table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--text-sm);
}

.docs-params table th {
    text-align: left;
    padding: 0.5rem 0.75rem;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border);
}

.docs-params table td {
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    vertical-align: top;
}

.docs-params table td:first-child {
    white-space: nowrap;
}

.docs-params table td code {
    font-size: var(--text-xs);
}

/* Docs: Tabs for code examples */
.docs-tabs {
    margin: 1rem 0;
}

.docs-tabs-header {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
}

.docs-tab {
    padding: 0.5rem 1rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-secondary);
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.docs-tab:hover {
    color: var(--text);
    background: var(--bg-secondary);
}

.docs-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.docs-tab-content {
    display: none;
}

.docs-tab-content.active {
    display: block;
}

.docs-tab-content .code-block {
    margin-top: 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.docs-content .code-block {
    position: relative;
    max-width: 100%;
}

.code-block-code {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    padding-right: 6.5rem;
    box-sizing: border-box;
    white-space: pre;
}

.code-block-code::-webkit-scrollbar {
    width: 5px;
    height: 8px;
}

.code-block-code::-webkit-scrollbar-thumb {
    background: var(--landing-emerald-600);
    border-radius: var(--radius-lg);
}

.docs-code-copy {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    z-index: 1;
    min-width: 5.5rem;
    height: 1.75rem;
    padding: 0 0.625rem;
    border: 1px solid rgba(16, 185, 129, 0.34);
    border-radius: var(--radius-sm);
    background: rgba(15, 23, 42, 0.88);
    color: #d1fae5;
    cursor: pointer;
    font-family: inherit;
    font-size: var(--text-xs);
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
}

.docs-code-copy:hover,
.docs-code-copy:focus-visible {
    background: rgba(6, 78, 59, 0.96);
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.12), var(--shadow-sm);
    color: #ecfdf5;
}

.docs-code-copy:focus-visible {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
}

.docs-code-copy.copied,
.docs-code-copy.copied:hover,
.docs-code-copy.copied:focus-visible {
    background: var(--success-light);
    border-color: var(--success);
    box-shadow: var(--shadow-sm);
    color: var(--success-text);
}

.docs-code-copy.copy-error,
.docs-code-copy.copy-error:hover,
.docs-code-copy.copy-error:focus-visible {
    background: var(--danger-light);
    border-color: var(--danger);
    box-shadow: var(--shadow-sm);
    color: var(--danger-text);
}

/* Docs: Steps */
.docs-steps {
    --docs-step-circle-size: 2.2rem;
    --docs-step-gap: 1.35rem;
    display: flex;
    flex-direction: column;
    gap: var(--docs-step-gap);
    margin: 1.25rem 0;
}

.docs-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0;
}

.docs-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: calc(var(--docs-step-circle-size) + 0.375rem);
    left: calc(var(--docs-step-circle-size) / 2);
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + var(--docs-step-gap) - (var(--docs-step-circle-size) + 0.375rem));
    background: var(--border);
    border-radius: 999px;
}

.docs-step-num {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--docs-step-circle-size);
    height: var(--docs-step-circle-size);
    min-width: var(--docs-step-circle-size);
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: var(--text-sm);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
}

.docs-step h3 {
    display: block;
    margin: 0 0 0.25rem;
    font-size: var(--text-lg);
    color: var(--text);
    font-weight: 600;
}

.docs-step p {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.5;
}

.docs-screenshot-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.375rem;
    min-height: 180px;
    margin-top: 0.875rem;
    padding: 1rem;
    border: 1px dashed var(--border);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--bg-secondary) 92%, white 8%), color-mix(in srgb, var(--bg) 84%, var(--primary-light) 16%));
    box-shadow: var(--shadow-xs);
}

.docs-screenshot-placeholder strong {
    font-size: var(--text-sm);
    color: var(--text);
}

.docs-screenshot-placeholder span {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.5;
    max-width: 48ch;
}

.docs-tutorial-gallery {
    display: grid;
    gap: 0.875rem;
    margin-top: 0.875rem;
}

.docs-tutorial-gallery--two-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.docs-tutorial-figure {
    margin: 0.875rem 0 0.875rem;
    width: 100%;
    max-height: 400px;
}

.docs-tutorial-gallery .docs-tutorial-figure {
    margin-top: 0;
}

.docs-tutorial-image {
    display: block;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
    box-shadow: var(--shadow-sm);
}

#quickstart .docs-tabs {
    margin-left: calc(var(--docs-step-circle-size) + 0.75rem);
}

#quickstart .docs-tabs-header,
#quickstart .docs-tab-content {
    width: 100%;
}

/* Docs: Model cards grid */
.docs-models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
    margin: 1.25rem 0;
}

.docs-model-card {
    display: block;
    padding: 1.25rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-xs);
}

.docs-model-card:visited {
    color: inherit;
}

.docs-model-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.docs-model-icon {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.docs-model-icon svg {
    width: 28px;
    height: 28px;
}

.docs-model-icon-mask {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: currentColor;
    mask: var(--docs-model-icon-url) center / contain no-repeat;
    -webkit-mask: var(--docs-model-icon-url) center / contain no-repeat;
}

.docs-model-icon-embeddings {
    --docs-model-icon-url: url("/static/img/docs/embeddings.svg");
}

.docs-model-icon-chat {
    --docs-model-icon-url: url("/static/img/docs/chat.svg");
}

.docs-model-icon-images {
    --docs-model-icon-url: url("/static/img/docs/images.svg");
}

.docs-model-icon-tts {
    --docs-model-icon-url: url("/static/img/docs/tts.svg");
}

.docs-model-icon-stt {
    --docs-model-icon-url: url("/static/img/docs/stt.svg");
}

.docs-model-icon-reasoning {
    --docs-model-icon-url: url("/static/img/docs/reasoning.svg");
}

.docs-model-card strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: var(--text-sm);
    color: var(--text);
}

.docs-model-card p {
    margin: 0;
    font-size: var(--text-xs);
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Docs: h4 subheadings */
.docs-content h4 {
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: var(--text-base);
    color: var(--text);
    font-weight: 600;
}

.resource-card {
    display: block;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-xs);
}

.resource-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    color: var(--text);
    transform: translateY(-2px);
}

.resource-card strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text);
    font-size: var(--text-sm);
}

.resource-card p {
    margin: 0;
    font-size: var(--text-xs);
    color: var(--text-secondary);
}

.docs-nav-cards p {
    margin-bottom: 0;
}

@media (max-width: 1024px), (max-height: 900px) {
    .docs-container {
        grid-template-columns: 1fr;
        gap: 0.5px;
    }

    .docs-sidebar-shell {
        order: -1;
        margin-bottom: 0.625rem;
    }

    .docs-sidebar-toggle {
        display: flex;
    }

    .docs-sidebar {
        position: static;
        margin-top: 0;
        padding: 0;
        border: 0 solid transparent;
        border-radius: var(--radius-lg);
        background: var(--bg);
        box-shadow: var(--shadow-xs);
        opacity: 0;
        transform: translateY(-0.4rem);
        transform-origin: top;
        max-height: 0;
        overflow: clip;
        pointer-events: none;
        visibility: hidden;
        transition:
            opacity 0.24s ease,
            transform 0.24s ease,
            max-height 0.28s ease,
            visibility 0s linear 0.28s;
    }

    .docs-sidebar-shell.is-open .docs-sidebar {
        opacity: 1;
        transform: translateY(0);
        margin-top: 0.375rem;
        padding: 1rem;
        border-width: 1px;
        border-color: var(--border);
        max-height: min(75vh, 32rem);
        overflow-y: auto;
        pointer-events: auto;
        visibility: visible;
        transition:
            opacity 0.24s ease,
            transform 0.24s ease,
            max-height 0.28s ease,
            visibility 0s;
    }

    .docs-models-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .docs-nav-cards-container,
    .docs-nav-cards-container--dense {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .docs-all-container {
        margin-top: 20px;
    }
}


@media (max-width: 768px) {
    .docs-container {
        padding: 0 1rem 1.5rem;
    }

    .docs-page-nav {
        grid-template-columns: 1fr;
    }

    .docs-page-nav-link--next {
        text-align: left;
        align-items: flex-start;
    }

    .docs-tutorial-gallery--two-up {
        grid-template-columns: 1fr;
    }

    #quickstart .docs-tabs {
        margin-left: 0;
    }

    .docs-home-hero {
        padding: 0 0 1.25rem;
    }

    .docs-home-actions .btn {
        width: 100%;
    }

    .docs-nav-cards {
        min-height: 0;
        align-items: center;
        padding: 0.875rem;
    }

    code {
        font-size: 12px !important;
    }
}

@media (max-width: 700px) {
    .docs-all-container {
        margin-top: 15px;
    }

    .docs-container {
        gap: 0;
    }

    .docs-align-content {
        width: 100%;
        max-width: 100%;
    }

    .docs-content {
        max-width: 100%;
        min-width: 0;
    }

    .docs-step {
        gap: 0.625rem;
    }

    .docs-step-num {
        width: 2.5rem;
        min-width: 2.5rem;
        height: 2.5rem;
        font-size: 0.75rem;
    }

    .docs-step:not(:last-child)::after {
        top: 2.875rem;
        left: 1.25rem;
        height: calc(100% + var(--docs-step-gap) - 2.875rem);
    }

    .docs-tabs-header {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .docs-tab {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .docs-tab-content .code-block {
        border-radius: var(--radius-lg);
    }

    .docs-params {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .docs-params table {
        min-width: 640px;
    }

    .docs-params table td,
    .docs-params table th {
        padding: 0.5rem 0.625rem;
    }

    .info-box {
        padding: 0.75rem 0.875rem;
        overflow-wrap: anywhere;
    }

    .info-box code,
    .docs-content p code,
    .docs-content td code {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .docs-quickstart-actions .btn {
        width: 100%;
    }
}
