/* Guide Pages Shared Styles */

.step-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.workflow-arrow {
    color: #ea580c;
    font-size: 2rem;
    margin: 1rem 0;
}

.code-block {
    background: #1f2937;
    color: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    overflow-x: auto;
}

/* Platform Admin Dashboard Styles */
.sidebar {
    width: 280px;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 1000;
}

.main-content {
    margin-left: 280px;
    min-height: 100vh;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

/* Test API Page Styles */
.test-api-body {
    font-family: monospace;
    padding: 20px;
    background: #1a1a1a;
    color: #00ff00;
}

.test-section {
    margin: 20px 0;
    padding: 20px;
    background: #2a2a2a;
    border: 1px solid #00ff00;
}

.test-button {
    background: #00ff00;
    color: #000;
    padding: 10px 20px;
    margin: 10px 0;
    cursor: pointer;
    border: none;
}

.test-pre {
    white-space: pre-wrap;
    word-wrap: break-word;
}

.error {
    color: #ff0000;
}

.success {
    color: #00ff00;
}
