/* Banner Component Styles */

.banner-component-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin-bottom: 20px;
}

/* Banner Item */
.banner-item {
    background-color: #e2edff;
    padding: 14px 18px;
    position: relative;
    margin-top: 10px;
}

/* Banner Content */
.banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Banner Icon */
.banner-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}

.banner-icon svg {
    width: 16px;
    height: 16px;
}

/* Banner Text */
.banner-text {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    line-height: 1.4;
    margin: 0;
}

/* Banner Divider */
.banner-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-component-container {
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .banner-item {
        padding: 12px 14px;
    }
    
    .banner-content {
        gap: 10px;
    }
    
    .banner-text {
        font-size: 14px;
    }
    
    .banner-icon {
        width: 18px;
        height: 18px;
    }
    
    .banner-icon svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .banner-component-container {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .banner-item {
        padding: 10px 12px;
    }
    
    .banner-content {
        gap: 8px;
    }
    
    .banner-text {
        font-size: 13px;
        line-height: 1.3;
    }
    
    .banner-icon {
        width: 16px;
        height: 16px;
    }
    
    .banner-icon svg {
        width: 12px;
        height: 12px;
    }
}

/* Animation for banner appearance */
@keyframes bannerFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-item {
    animation: bannerFadeIn 0.3s ease-out;
}


/* Dark mode support */
@media (prefers-color-scheme: dark) {
    
    .banner-text {
        color: #000000;
    }
    
    .banner-icon {
        color: #000000;
    }
    
    .banner-divider {
        background: linear-gradient(90deg, transparent 0%, #f6f9fe 50%, transparent 100%);
    }
}

