/* BFS Testservice - Multi-Auth Showcase Styles */
/* Brand Colors: BFS Abrechnungs GmbH */

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

body {
    font-family: Arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    padding: 20px;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.showcase-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #db6900;
}

.bfs-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.showcase-header h1 {
    font-size: 2.5rem;
    color: #331d0b;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    font-size: 1.1rem;
}

.auth-flow-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.auth-flow-info h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.auth-flow-info ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.auth-flow-info ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.tech-stack {
    background: white;
    padding: 20px;
    border-radius: 6px;
    margin-top: 20px;
}

.tech-stack h3 {
    color: #db6900;
    margin-bottom: 12px;
}

.tech-stack ul {
    list-style: none;
    padding: 0;
}

.tech-stack ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.tech-stack ul li:last-child {
    border-bottom: none;
}

.tech-stack strong {
    color: #331d0b;
}

.user-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.user-card h2 {
    color: #333;
    margin-bottom: 20px;
}

.user-info {
    background: white;
    padding: 20px;
    border-radius: 6px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .label {
    font-weight: 600;
    color: #666;
}

.info-row .value {
    color: #333;
}

.auth-badge {
    background: #db6900;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.9rem;
}

.features-section {
    background: #e8f5e9;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.features-section h3 {
    color: #2e7d32;
    margin-bottom: 15px;
}

.features-section ul {
    padding-left: 25px;
}

.features-section ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.api-section {
    background: #fff3e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.api-section h3 {
    color: #e65100;
    margin-bottom: 15px;
}

.data-display {
    background: white;
    border-radius: 6px;
    padding: 15px;
    margin-top: 15px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    max-height: 300px;
    overflow-y: auto;
}

.action-section {
    text-align: center;
    margin: 30px 0;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #db812d 0%, #db6900 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(219, 105, 0, 0.4);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

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

.btn-danger {
    background: #dc3545;
    color: white;
}

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

.links {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.links a {
    color: #db6900;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
}

.links a:hover {
    text-decoration: underline;
}

.error-card {
    background: #ffebee;
    border: 1px solid #ef5350;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

.error-card h1 {
    color: #c62828;
    margin-bottom: 15px;
}

.error-message {
    color: #d32f2f;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .showcase-header h1 {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
    }
}
