/*
Generated by AI (Claude 3.5 Sonnet)
Stylesheet for AiMeet API documentation
*/
:root {
    --primary-color: #4a90e2;
    --secondary-color: #f5f6fa;
    --text-color: #2c3e50;
    --border-color: #e1e8ed;
    --success-color: #2ecc71;
    --warning-color: #ff6b6b;
    --code-bg: #2d2d2d;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: var(--text-color);
    min-height: 100vh;
}

h1 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5em;
    margin: 1em 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.container {
    max-width: 800px;
    margin: 2em auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 2em;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.section {
    margin-bottom: 2em;
    padding: 1.5em;
    border-radius: 10px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease;
}

.section:hover {
    transform: translateY(-2px);
}

.section h2 {
    color: var(--primary-color);
    margin-top: 0;
    font-size: 1.5em;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5em;
}

button {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    border: none;
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 500;
    transition: all 0.3s ease;
}

button:hover {
    background: #357abd;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

input, select {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1em;
    transition: all 0.3s ease;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

pre {
    background: var(--secondary-color);
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 0.9em;
    border: 1px solid var(--border-color);
}

.api-description {
    font-size: 0.95em;
    color: #666;
    margin: 15px 0;
    line-height: 1.6;
    padding: 15px;
    background-color: var(--secondary-color);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.api-spec {
    font-family: 'Fira Code', monospace;
    font-size: 0.9em;
    background-color: var(--code-bg);
    color: #e6e6e6;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
    display: none;
    white-space: pre-wrap;
    line-height: 1.6;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.show-spec {
    font-size: 0.9em;
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
    margin: 10px 0;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    background: rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
}

.show-spec:hover {
    background: rgba(74, 144, 226, 0.2);
}

.parameter {
    color: #85ea85;
    font-weight: 500;
}

.required {
    color: #ff8f8f;
    font-weight: 500;
}

#apiLog {
    max-height: 300px;
    overflow-y: auto;
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .container {
        margin: 1em;
        padding: 1em;
    }
    
    .section {
        padding: 1em;
    }
}

.version {
    text-align: center;
    color: var(--text-color);
    margin-top: -1em;
    margin-bottom: 2em;
    font-size: 0.9em;
    opacity: 0.7;
}

.update-date {
    font-size: 0.9em;
    color: var(--text-color);
    opacity: 0.8;
} 