﻿.smart-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 12px 16px;
    z-index: 1000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-bottom: 1px solid #eee;
    transition: transform 0.3s ease-in-out;
}

    .smart-banner .app-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        margin-right: 16px;
    }

    .smart-banner .banner-content {
        flex: 1;
    }

        .smart-banner .banner-content strong {
            font-size: 16px;
            display: block;
            margin-bottom: 4px;
            color: #000;
        }

        .smart-banner .banner-content p {
            font-size: 14px;
            margin: 0;
            color: #666;
        }

    .smart-banner .banner-actions {
        display: flex;
        gap: 8px;
        align-items: center;
    }

        .smart-banner .banner-actions button {
            background-color: #0078d4;
            color: #fff;
            border: none;
            padding: 8px 12px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            transition: background-color 0.2s ease;
        }

            .smart-banner .banner-actions button:hover {
                background-color: #005fa3;
            }

            .smart-banner .banner-actions button:last-child {
                background-color: transparent;
                color: #888;
                font-size: 20px;
                padding: 0 8px;
                line-height: 1;
                border-radius: 50%;
            }

                .smart-banner .banner-actions button:last-child:hover {
                    color: #000;
                }
