/**
 * OpenBotAuth Frontend Styles
 */

.openbotauth-teaser {
    position: relative;
    margin: 20px 0;
}

.openbotauth-teaser .teaser-content {
    position: relative;
    padding-bottom: 40px;
}

.openbotauth-teaser .teaser-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
}

.openbotauth-teaser .teaser-notice {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.openbotauth-teaser .teaser-notice strong {
    display: block;
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #495057;
}

.openbotauth-teaser .teaser-notice p {
    margin: 5px 0;
    color: #6c757d;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .openbotauth-teaser .teaser-content::after {
        background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1));
    }
    
    .openbotauth-teaser .teaser-notice {
        background: #2d3748;
        border-color: #4a5568;
    }
    
    .openbotauth-teaser .teaser-notice strong {
        color: #e2e8f0;
    }
    
    .openbotauth-teaser .teaser-notice p {
        color: #cbd5e0;
    }
}

