:root {
    --bg-color: #f0f2f5;
    --card-bg: #ffffff;
    --text-main: #2c3e50;
    --text-muted: #7f8c8d;
    --primary: #fbc02d;
    /* Sunny Yellow */
    --primary-dark: #f9a825;
    --border-color: #dcdde1;
    --terminal-bg: #1e272e;
    --terminal-text: #ecf0f1;
    --shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 20px;
}

/* Navigation Styling */
.platform-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    margin-bottom: -1px;
    /* Overlap with content border */
}

.platform-tabs {
    display: flex;
    gap: 8px;
}

.tab-btn {
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-bottom: none;
    background: #e9ecef;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.tab-btn:hover {
    background: #dee2e6;
    color: var(--text-main);
}

.tab-btn.active {
    background: var(--card-bg);
    color: var(--text-main);
    border-color: var(--border-color);
    padding-bottom: 11px;
    margin-bottom: -1px;
    z-index: 10;
}

.github-link {
    color: var(--text-muted);
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

.github-link:hover {
    color: var(--text-main);
}

/* Content Area */
.tab-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0 12px 12px 12px;
    padding: 24px;
    box-shadow: var(--shadow);
}

section {
    margin-bottom: 32px;
}

section:last-child {
    margin-bottom: 0;
}

/* Tool Table Styling */
.tool-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    background: white;
}

.tool-table th {
    text-align: left;
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 2px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tool-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.tool-table tr.active-row {
    background: #fffdf5;
}

.actions-col {
    text-align: right;
    width: 170px;
}

.row-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

/* Action Buttons within table */
.action-btn {
    padding: 6px 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.action-btn:hover {
    border-color: var(--primary);
    background: #fffdf5;
    color: var(--text-main);
}

.action-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary-dark);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Command Section Styling */
.command-actions {
    display: flex;
    gap: 12px;
}

#download-link {
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 600;
}

#download-link:hover {
    color: var(--primary-dark);
}

.terminal {
    background: #1e272e;
    color: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    overflow: auto;
    max-height: 400px;
    border: 1px solid #34495e;
    margin-top: 12px;
}

#command-output {
    display: block;
    white-space: pre;
}

.secondary-btn {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
}

.secondary-btn:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
}

footer {
    text-align: center;
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

footer a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 600px) {
    .platform-tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: 1;
        border-radius: 8px;
        border-bottom: 1px solid var(--border-color);
    }

    .tab-content {
        border-radius: 12px;
        margin-top: 8px;
    }

    .tool-table thead {
        display: none;
    }

    .tool-table tr {
        display: block;
        margin-bottom: 16px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 10px;
    }

    .tool-table td {
        display: block;
        text-align: left;
        padding: 8px;
        border: none;
    }

    .actions-col {
        width: 100%;
        text-align: left;
    }

    .row-actions {
        justify-content: flex-start;
    }
}
/*# sourceMappingURL=style.css.map */