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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.card h2 {
    color: #4a5568;
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.info-grid {
    display: grid;
    gap: 12px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.info-label {
    font-weight: 600;
    color: #4a5568;
}

.info-value {
    color: #2d3748;
    font-family: 'SF Mono', Monaco, monospace;
}

.status-healthy {
    color: #38a169 !important;
    font-weight: bold;
}

.loading {
    text-align: center;
    color: #718096;
    padding: 20px;
}

.error {
    color: #e53e3e;
    text-align: center;
    padding: 20px;
    background: #fed7d7;
    border-radius: 8px;
}

.api-endpoints {
    display: grid;
    gap: 12px;
}

.endpoint {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    gap: 12px;
}

.method {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    min-width: 50px;
    text-align: center;
}

.method.get {
    background: #48bb78;
    color: white;
}

.path {
    font-family: 'SF Mono', Monaco, monospace;
    font-weight: 600;
    color: #2d3748;
    min-width: 120px;
}

.description {
    color: #718096;
    flex: 1;
}

.actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 32px 0;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn.primary {
    background: #667eea;
    color: white;
}

.btn.primary:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

.btn.secondary {
    background: #edf2f7;
    color: #4a5568;
}

.btn.secondary:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

footer {
    text-align: center;
    margin-top: 40px;
    color: white;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .container {
        padding: 16px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .card {
        padding: 16px;
    }
    
    .actions {
        flex-direction: column;
    }
    
    .endpoint {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}