.demo-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.demo-header {
    text-align: center;
    margin-bottom: 50px;
}

.demo-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.demo-header p {
    font-size: 1.2em;
    color: #666;
}

.credentials-section {
    background: white;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.credentials-section h2 {
    font-size: 2em;
    margin-bottom: 10px;
    text-align: center;
}

.credentials-intro {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.credentials-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.credentials-table thead {
    background: #0066cc;
    color: white;
}

.credentials-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1em;
}

.credentials-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.2s;
}

.credentials-table tbody tr:hover {
    background: #f8f9fa;
}

.credentials-table tbody tr:last-child {
    border-bottom: none;
}

.credentials-table td {
    padding: 15px;
}

.role-cell {
    font-weight: 600;
}

.role-icon {
    font-size: 1.3em;
    margin-right: 8px;
    vertical-align: middle;
}

.role-name {
    vertical-align: middle;
}

.username-cell {
    font-family: monospace;
    font-size: 1.1em;
    font-weight: 600;
    color: #0066cc;
}

.access-cell {
    font-size: 0.95em;
    color: #666;
}

.password-note {
    background: #f0f7ff;
    padding: 12px 20px;
    border-radius: 6px;
    border-left: 4px solid #0066cc;
    text-align: center;
    margin-top: 20px;
}

.password-note code {
    background: #e0f0ff;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: monospace;
    font-size: 1.05em;
}

@media (max-width: 768px) {
    .demo-container {
        padding: 20px 15px;
    }
    
    .credentials-table {
        font-size: 0.85em;
    }
    
    .credentials-table th,
    .credentials-table td {
        padding: 10px 8px;
    }
    
    .demo-header h1 {
        font-size: 2em;
    }
    
    .demo-header p {
        font-size: 1em;
    }
    
    .cta-primary {
        display: block;
        width: 100%;
        max-width: 320px;
        margin: 20px auto 0;
        text-align: center;
        padding: 15px 20px;
        font-size: 1.1em;
    }
}

.demo-access-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: #f0f7ff;
    border-radius: 10px;
}

.demo-access-section h2 {
    margin-bottom: 20px;
}

.cta-primary {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 15px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0, 102, 204, 0.2);
}

.cta-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.3);
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #0066cc;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.2s;
}

.back-link:hover {
    color: #0052a3;
    text-decoration: underline;
}

.back-link:before {
    content: "← ";
}