.api-flow {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
}
.flow-step {
    display: inline-block;
    width: 150px;
    padding: 20px;
    margin: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}
.flow-arrow {
    display: inline-block;
    font-size: 24px;
    color: #4a6ee0;
    margin: 0 5px;
    vertical-align: middle;
}
.api-method {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: bold;
    margin-right: 10px;
    color: white;
}
.method-get {
    background-color: #61affe;
}
.method-post {
    background-color: #49cc90;
}
.method-put {
    background-color: #fca130;
}
.method-delete {
    background-color: #f93e3e;
}
.method-patch {
    background-color: #50e3c2;
}
.api-example {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.example-header {
    background: linear-gradient(135deg, #4a6ee0 0%, #6a11cb 100%);
    color: white;
    padding: 20px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.example-content {
    padding: 25px;
}
.endpoint-table {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin: 25px 0;
}
.endpoint-table th {
    background: linear-gradient(135deg, #4a6ee0 0%, #6a11cb 100%);
    color: white;
    border: none;
}
.endpoint-table tr:hover {
    background-color: #f8f9fa;
}
.response-demo {
    background-color: #1e1e1e;
    color: #d4d4d4;
    padding: 20px;
    border-radius: 10px;
    font-family: 'Consolas', monospace;
    margin: 20px 0;
    max-height: 400px;
    overflow-y: auto;
}
.json-key {
    color: #9cdcfe;
}
.json-string {
    color: #ce9178;
}
.json-number {
    color: #b5cea8;
}
.json-boolean {
    color: #569cd6;
}
.json-null {
    color: #569cd6;
}
.api-client-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.api-client-card:hover {
    transform: translateY(-5px);
}
.api-client-card .card-header {
    background: linear-gradient(135deg, #4a6ee0 0%, #6a11cb 100%);
    color: white;
    padding: 20px;
    font-weight: bold;
    border-bottom: none;
}
.auth-method {
    background-color: #e8f4fd;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    border-left: 5px solid #4a6ee0;
}
.auth-step {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #c3d9f5;
}
.auth-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.auth-label {
    font-weight: bold;
    color: #2c5282;
    margin-bottom: 5px;
}
.auth-value {
    font-family: 'Consolas', monospace;
    background-color: white;
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #c3d9f5;
}
.rate-limit-indicator {
    background-color: #fff8e1;
    border-left: 5px solid #ffb300;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}
.pagination-demo {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    border: 2px dashed #dee2e6;
}
.real-world-api {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 30px 0;
    border-top: 5px solid #4a6ee0;
}
.api-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #dee2e6;
}
.api-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a6ee0 0%, #6a11cb 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin-right: 20px;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.api-dashboard {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    font-family: 'Consolas', monospace;
}
.dashboard-line {
    margin-bottom: 8px;
    padding: 8px;
    border-radius: 5px;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
.dashboard-success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border-left: 3px solid #4caf50;
}
.dashboard-warning {
    background-color: rgba(255, 152, 0, 0.1);
    color: #ff9800;
    border-left: 3px solid #ff9800;
}
.dashboard-error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border-left: 3px solid #f44336;
}
.test-panel {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
}
.test-button {
    background: linear-gradient(135deg, #4a6ee0 0%, #6a11cb 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.test-button:hover {
    opacity: 0.9;
}
