.app-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #ffffff;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}

.app-banner__icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    flex-shrink: 0;
}

.app-banner__texts {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.app-banner__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
}

.app-banner__text {
    font-size: 0.8125rem;
    color: #6b6b6b;
}

.app-banner__button {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    background: #3c76ae;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.app-banner__close {
    flex-shrink: 0;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #666666;
    cursor: pointer;
    padding: 0 0.25rem;
}

.app-banner--top {
    position: static;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
