/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 800px;
}

h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Navbar */
.navbar {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link.active {
    color: #2563eb;
    font-weight: 600;
}

.heart {
    color: #ef4444;
}

/* Card & Alert Styles */
.card {
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
}

.alert-info {
    background-color: #f0f9ff;
    border-left: 4px solid #0ea5e9;
    padding: 1.5rem;
    border-radius: 4px;
}

.alert-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0369a1;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Steps */
.step {
    margin-bottom: 2rem;
}

.step:last-child {
    margin-bottom: 0;
}

.step-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #334155;
    margin-bottom: 0.5rem;
}

.step-desc {
    color: #475569;
    font-size: 0.95rem;
}

.step-desc code {
    background-color: #e2e8f0;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9em;
}

.os-label {
    margin: 1rem 0 0.5rem 0;
    font-weight: 500;
    color: #334155;
}

/* Code Block */
.code-block-wrapper {
    position: relative;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.code-block {
    font-family: 'JetBrains Mono', monospace;
    color: #334155;
    font-size: 0.9rem;
    overflow-x: auto;
    white-space: nowrap;
}

.copy-btn {
    background-color: white;
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.copy-btn:hover {
    background-color: #f1f5f9;
    color: #0f172a;
    border-color: #94a3b8;
}

/* Terminal / Logs Section */
.logs-section {
    margin-top: 3rem;
}

.logs-section h3 {
    font-size: 1.2rem;
    color: #334155;
    margin-bottom: 1rem;
}

.terminal {
    background-color: #1e1e1e;
    color: #d4d4d4;
    padding: 1.5rem;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    overflow-x: auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.terminal-line {
    white-space: pre-wrap;
}

.prompt {
    color: #fbbf24;
    /* yellow-400 */
}

.text-green {
    color: #4ade80;
    /* green-400 */
}

.text-yellow {
    color: #facc15;
    /* yellow-400 */
}

.text-cyan {
    color: #22d3ee;
    /* cyan-400 */
}

.text-blue {
    color: #60a5fa;
    /* blue-400 */
}