/* Shared API tool chrome — green palette inside container layout */

body {
    background: linear-gradient(135deg, #28a745 0%, #20c997 55%, #17a2b8 100%);
}

.api-tool {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.api-tool-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.api-tool-nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1e7e34;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    padding: 6px 12px;
    border-radius: 8px;
    background: #e8f5e8;
    transition: background 0.2s;
}

.api-tool-nav a:hover {
    background: #d4edda;
}

.api-tool-nav .current {
    color: #64748b;
    font-size: 0.9em;
}

.api-tool > h1 {
    margin: 0;
    font-size: 1.35rem;
    color: #1e7e34;
}

.api-tool .muted {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.api-tool .api-container,
.api-tool .search-container,
.api-tool .page,
.api-tool .wrap {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding-top: 0 !important;
}
