/* Dashbord Styles */
body.dashboard {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    margin: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

h1 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 8px;
}

.banner-list {
    width: 100%;
    max-width: 1200px;
}

.banner-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    padding: 24px;
    margin-bottom: 40px;
}

.iframe-container {
    width: 100%;
    aspect-ratio: 1200 / 400;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.integration-code {
    background: #1e293b;
    color: #f8fafc;
    padding: 16px;
    border-radius: 8px;
    font-family: monospace;
}

.integration-code pre {
    margin: 0;
    overflow-x: auto;
}

/* Banner Shared Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
