/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    scroll-behavior: smooth;
}

:root {
    --bg-color: #1c1c1c;
    /* Postman dark theme workspace background */
    --card-bg: #212121;
    /* Sidebar / Panel dark */
    --border-color: #323232;
    /* Postman subtle borders */
    --text-color: #e6e6e6;
    /* Off-white text */
    --text-muted: #a6a6a6;
    /* Gray text */
    --primary-color: #ff6c37;
    /* Postman Orange */
    --accent-color: #02a676;
    /* Postman Success Green (200 OK) */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 0;
}

.highlight {
    color: var(--primary-color);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-family: 'Courier New', Courier, monospace;
}

.section-title::before {
    content: "{ ";
    color: var(--text-muted);
}

.section-title::after {
    content: " }";
    color: var(--text-muted);
}

/* Postman HTTP Methods Mock Up */
.method {
    font-weight: bold;
    font-size: 0.85rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-right: 5px;
    font-family: monospace;
}

.method.get {
    color: #0cbb52;
}

.method.post {
    color: #ffb400;
}

.method.put {
    color: #097bed;
}

.method.patch {
    color: #c44cbe;
}

.method.delete {
    color: #eb2013;
}

/* Header & Nav */
header {
    background-color: var(--card-bg);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
}

.logo {
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo i {
    color: var(--primary-color);
    margin-right: 5px;
}

.logo span {
    color: var(--text-muted);
    font-size: 1rem;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 1.8rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.status-badge {
    display: inline-block;
    background-color: rgba(2, 166, 118, 0.15);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-family: monospace;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 0.5rem;
}

.hero-content h2 {
    font-size: 1.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-family: monospace;
}

.hero-content p {
    max-width: 600px;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.social-icons a {
    color: var(--text-muted);
    font-size: 1.6rem;
    margin-right: 1.5rem;
    transition: color 0.2s;
    display: inline-block;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.7rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 2rem;
    font-family: monospace;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.btn:hover {
    background: #e0531f;
}

/* About / JSON Section */
.about-card {
    background: #171717;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.card-header-mock {
    background: var(--card-bg);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    font-family: monospace;
}

.about-card pre {
    padding: 1.5rem;
    overflow-x: auto;
}

.about-card code {
    font-family: 'Consolas', 'Courier New', Courier, monospace;
    font-size: 1rem;
    color: #7dd3fc;
    /* Light blue bracket/braces */
}

.json-key {
    color: #f43f5e;
}

/* Pink/red keys */
.json-string {
    color: #34d399;
}

/* Green strings */

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.skill-category {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.skill-category h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-family: monospace;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-muted);
}

.skill-category li::before {
    content: '➔';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Experience Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--border-color);
    top: 0;
    bottom: 0;
    left: 20px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 50px;
}

.timeline-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    left: 15px;
    top: 7px;
    z-index: 2;
}

.timeline-date {
    font-family: monospace;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.timeline-content {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.timeline-content h3 {
    font-size: 1.3rem;
}

.timeline-content h4 {
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 1rem;
}

.task-list {
    margin-top: 1rem;
    padding-left: 1.2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Education */
.education-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.education-card h3 {
    color: var(--primary-color);
}

.degree {
    margin: 0.5rem 0;
    font-style: italic;
    color: var(--text-muted);
}

.gpa {
    font-family: monospace;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-family: monospace;
    font-size: 0.85rem;
}

/* Mobile Responsive */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--text-color);
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--card-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
        margin-left: 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .timeline::after {
        left: 10px;
    }

    .timeline-item {
        padding-left: 35px;
    }

    .timeline-dot {
        left: 5px;
    }
}

/* Postman-styled Grid Layout */
.postman-grid-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background-color: #171717;
    /* Solid console black background */
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.postman-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.postman-box {
    background-color: var(--card-bg);
    /* Postman Dark Sidebar gray */
    border: 1px solid var(--border-color);
    width: 105px;
    height: 105px;
    border-radius: 4px;
    /* Harder corners consistent with Postman UI */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s, border-color 0.2s;
    cursor: default;
}

/* Icons styling inside Postman panels */
.postman-box i {
    font-size: 2rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: color 0.2s;
}

/* Monospaced Labels for Tech Stacks */
.postman-box span {
    font-size: 0.75rem;
    font-family: 'Consolas', 'Courier New', Courier, monospace;
    color: var(--text-muted);
    text-align: center;
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s;
}

/* Postman Interface Interactivity (No glow, strict color states) */
.postman-box:hover {
    background-color: rgba(255, 108, 55, 0.05);
    /* Very subtle orange tint background */
    border-color: var(--primary-color);
    /* Postman Orange Border */
}

.postman-box:hover i {
    color: var(--primary-color);
    /* Icon switches to Postman Orange */
}

.postman-box:hover span {
    color: var(--text-color);
    /* Text highlights to full white */
}

/* Variations for specific core backend systems on hover (Optional block-level styling) */
.postman-box:nth-child(even):hover {
    background-color: rgba(2, 166, 118, 0.05);
    /* Subtle Postman Green tint */
    border-color: var(--accent-color);
    /* Postman Green Border (200 OK) */
}

.postman-box:nth-child(even):hover i {
    color: var(--accent-color);
}

/* Responsive breakdowns for mobile views */
@media (max-width: 768px) {
    .postman-grid-layout {
        gap: 0.75rem;
        padding: 1rem 0.5rem;
    }

    .postman-row {
        gap: 0.75rem;
    }

    .postman-box {
        width: 85px;
        height: 85px;
    }

    .postman-box i {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }

    .postman-box span {
        font-size: 0.65rem;
    }
}

/* Postman Request Bar Styles */
.api-request-section {
    background-color: var(--bg-color);
    padding-top: 4rem;
    /* Memberikan ruang setelah hero section */
}

.postman-request-container {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1rem;
}

.request-url-bar {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    background-color: #171717;
    border-radius: 4px;
    overflow: hidden;
}

.method-dropdown {
    color: #0cbb52;
    /* GET Green */
    font-weight: bold;
    font-family: monospace;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-right: 1px solid var(--border-color);
    background-color: var(--card-bg);
    cursor: default;
    user-select: none;
}

.url-input-field {
    flex: 1;
    padding: 0.6rem 1rem;
    font-family: 'Consolas', 'Courier New', Courier, monospace;
    font-size: 0.95rem;
    color: #e6e6e6;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background-color: #171717;
}

.send-btn {
    background-color: #097bed;
    /* Postman blue for primary action/Send button */
    color: white;
    border: none;
    padding: 0.6rem 1.8rem;
    font-family: sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.15s;
}

.send-btn:hover {
    background-color: #0261c2;
}

/* Request UI Tabs Mock */
.request-tabs-mock {
    display: flex;
    margin-top: 0.8rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.3rem;
}

.tab-item {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: sans-serif;
    cursor: pointer;
    position: relative;
    padding-bottom: 0.3rem;
}

.tab-item.active {
    color: var(--primary-color);
    /* Highlight active tab with Postman Orange */
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.badge-count {
    font-size: 0.7rem;
    background-color: #323232;
    color: #0cbb52;
    padding: 1px 5px;
    border-radius: 10px;
    margin-left: 2px;
}

/* Response Meta Bar Styles (Diatas JSON) */
.response-status-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.response-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
}

.status-meta {
    display: flex;
    gap: 1.2rem;
    font-family: monospace;
    font-size: 0.85rem;
}

.status-code {
    color: var(--accent-color);
    /* Green 200 OK */
    font-weight: bold;
}

.meta-item {
    color: var(--text-muted);
}

.meta-value {
    color: var(--accent-color);
}

/* Penyesuaian responsive untuk layar kecil */
@media (max-width: 576px) {
    .request-url-bar {
        flex-wrap: wrap;
    }

    .method-dropdown {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .url-input-field {
        width: calc(100% - 80px);
        font-size: 0.8rem;
    }

    .send-btn {
        padding: 0.6rem 1rem;
    }

    .status-meta {
        gap: 0.5rem;
        font-size: 0.75rem;
    }
}

/* .NET Core Controller Mockup Styles */
.controller-section {
    background-color: var(--bg-color);
    padding-top: 2rem;
}

.controller-card {
    background: #1e1e1e;
    /* VS Code / Code Editor standard dark background */
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.controller-card .card-header-mock {
    background: #252526;
    /* Dark tab header background */
    padding: 0.6rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    font-family: sans-serif;
    font-size: 0.85rem;
}

.file-tabs {
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: monospace;
}

.editor-actions {
    color: var(--text-muted);
    letter-spacing: 2px;
}

.controller-card pre {
    padding: 1.5rem;
    overflow-x: auto;
    margin: 0;
}

.controller-card code {
    font-family: 'Consolas', 'Courier New', Courier, monospace;
    font-size: 0.95rem;
    color: #d4d4d4;
    /* Default standard code text color */
    line-height: 1.5;
    text-align: left;
    display: block;
    white-space: pre;
}

/* C# Syntax Highlighting Colors */
.code-annotation {
    color: #4ec9b0;
    /* Teal/Green color for C# Attributes like [HttpGet] */
}

.code-keyword {
    color: #569cd6;
    /* Classic C# IDE Blue for keywords like public, async, var, return */
}

.code-function {
    color: #d8ba0e;
    /* Classic C# IDE Blue for keywords like public, async, var, return */
}

/* Penyesuaian responsive untuk layar ponsel */
@media (max-width: 768px) {
    .controller-card pre {
        padding: 1rem;
    }

    .controller-card code {
        font-size: 0.8rem;
    }
}

/* SQL Query Mockup Styles */
.sql-query-section {
    background-color: var(--bg-color);
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.sql-editor-card {
    background: #181818;
    /* Dark SQL Console background */
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.sql-editor-card .card-header-mock {
    background: var(--card-bg);
    /* Postman Dark Gray for consistency */
    padding: 0.6rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.editor-actions {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--text-color);
    background-color: #323232;
    padding: 2px 8px;
    border-radius: 3px;
    cursor: pointer;
    user-select: none;
    font-weight: bold;
}

.editor-actions:hover {
    background-color: #424242;
}

.sql-editor-card pre {
    padding: 1.5rem;
    overflow-x: auto;
    margin: 0;
    background-color: #111111;
}

.sql-editor-card code {
    font-family: 'Consolas', 'Courier New', Courier, monospace;
    font-size: 1rem;
    color: #e6e6e6;
    line-height: 1.5;
    text-align: left;
    display: block;
    white-space: pre;
}

/* SQL Syntax Highlighting Colors */
.sql-keyword {
    color: #569cd6;
    /* SQL Standard Blue for SELECT, FROM, WHERE, ORDER BY, DESC */
    font-weight: bold;
}

.sql-number {
    color: #b5cea8;
    /* Light Green for Numeric values like 1 */
}

/* SQL Console Footer */
.sql-console-footer {
    background: var(--card-bg);
    padding: 0.5rem 1rem;
    border-top: 1px solid var(--border-color);
    font-family: monospace;
    font-size: 0.8rem;
}

.console-status {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Penyesuaian responsive untuk layar ponsel */
@media (max-width: 768px) {
    .sql-editor-card pre {
        padding: 1rem;
    }

    .sql-editor-card code {
        font-size: 0.85rem;
    }
}

/* Postman Test Results / Awards Styles */
.awards {
    background-color: var(--bg-color);
}

.postman-test-container {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    max-width: 850px;
    margin: 0 auto;
}

.test-suite-header {
    background-color: #171717;
    padding: 0.8rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    font-family: sans-serif;
}

.test-suite-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
}
.test-suite-title i {
    color: var(--primary-color);
    margin-right: 6px;
}

.test-summary-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: monospace;
    font-size: 0.8rem;
}

.test-pass-badge {
    background-color: rgba(2, 166, 118, 0.15);
    color: var(--accent-color);
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: bold;
}

.test-count {
    color: var(--text-muted);
}

/* Individual Test Rows */
.test-result-row {
    display: flex;
    padding: 1.2rem;
    border-bottom: 1px solid var(--border-color);
    gap: 1.2rem;
    align-items: flex-start;
    transition: background-color 0.2s;
}

.test-result-row:last-child {
    border-bottom: none;
}

.test-result-row:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.test-status-indicator {
    font-family: monospace;
    font-weight: bold;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 3px;
    min-width: 55px;
    text-align: center;
}

.test-status-indicator.pass {
    background-color: var(--accent-color); /* Postman Success Green */
    color: #1c1c1c;
}

.test-detail {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.test-name {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 4px;
}

.test-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 6px;
}

.test-date {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--primary-color); /* Postman Orange for the metadata aspect */
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 576px) {
    .test-result-row {
        flex-direction: column;
        gap: 0.6rem;
    }
    .test-status-indicator {
        align-self: flex-start;
    }
}

/* Docker Compose Mockup Styles */
.docker-compose-section {
    background-color: var(--bg-color);
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.docker-card {
    background: #1e1e1e; /* Core editor theme */
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.docker-card .card-header-mock {
    background: #252526;
    padding: 0.6rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.docker-card .editor-actions {
    font-family: 'Consolas', 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    color: #a6a6a6;
    background-color: #111111;
    padding: 4px 10px;
    border-radius: 3px;
    border: 1px solid #333;
}

.docker-card pre {
    padding: 1.5rem;
    overflow-x: auto;
    margin: 0;
    background-color: #1c1c1c;
}

.docker-card code {
    font-family: 'Consolas', 'Courier New', Courier, monospace;
    font-size: 0.95rem;
    color: #d4d4d4;
    line-height: 1.5;
    text-align: left;
    display: block;
    white-space: pre;
}

/* YAML Syntax Highlighting */
.yaml-key {
    color: #569cd6; /* Blue for YAML keys/properties */
    font-weight: bold;
}

.yaml-value {
    color: #ce9178; /* Terracotta orange/string color for values */
}

/* Docker Console Footer */
.docker-console-footer {
    background: var(--card-bg);
    padding: 0.5rem 1rem;
    border-top: 1px solid var(--border-color);
    font-family: monospace;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .docker-card pre {
        padding: 1rem;
    }
    .docker-card code {
        font-size: 0.85rem;
    }
}

.skill-details {
    background-color: var(--bg-color);
}

.schema-container {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    max-width: 850px;
    margin: 0 auto;
    overflow: hidden;
}

.schema-header {
    background-color: #171717;
    padding: 0.7rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.schema-type {
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
}

.schema-body {
    padding: 1.5rem;
}

.schema-group {
    margin-bottom: 1.5rem;
}

.schema-group:last-child {
    margin-bottom: 0;
}

.schema-folder {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffb400; /* Postman Warning/Folder Yellow */
    font-family: monospace;
    font-size: 1rem;
    margin-bottom: 0.6rem;
    user-select: none;
}

.group-title {
    color: var(--text-color);
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
}

.schema-items {
    border-left: 1px dashed var(--border-color);
    margin-left: 7px;
    padding-left: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.schema-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(50, 50, 50, 0.4);
}

.item-name {
    font-family: 'Consolas', 'Courier New', Courier, monospace;
    font-size: 0.95rem;
    color: var(--text-color);
}

.item-type {
    font-family: monospace;
    font-size: 0.75rem;
    background-color: #171717;
    color: var(--text-muted);
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

/* Hover Interactivity */
.schema-item:hover {
    background-color: rgba(255, 255, 255, 0.01);
}

.schema-item:hover .item-name {
    color: var(--primary-color);
}

.schema-item:hover .item-type {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Responsive Breakpoints */
@media (max-width: 576px) {
    .schema-body {
        padding: 1rem;
    }
    .schema-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .item-type {
        align-self: flex-end;
    }
}

.schema-footer-action {
    background-color: #171717;
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.console-load-btn {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-family: 'Consolas', 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    width: 100%;
    max-width: 400px;
    text-align: left;
    transition: all 0.2s ease;
    text-align: center;
}

/* Prompt warna hijau khas terminal Linux/Postman */
.btn-prompt {
    color: var(--accent-color); /* Green #02a676 */
    font-weight: bold;
}

/* Efek interaktif saat kursor roket menyorot tombol */
.console-load-btn:hover {
    background-color: #1a1a1a;
    border-color: var(--primary-color); /* Orange highlight border */
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Animasi transisi halus saat konten muncul */
.load-more-content {
    animation: fadeInSchema 0.4s ease-out forwards;
}

@keyframes fadeInSchema {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}