/* smart-app-banner.css */
.smart-app-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    border-top: 1px solid #9CA9B7;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    box-sizing: border-box;
    font-family: 'Montserrat';
}

.smart-app-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
}

.app-logo {
    padding: 0.5rem;
    height: 50px;
    margin-right: 10px;
}

.app-info {
    flex-grow: 1;
    gap: 0.5rem;
}

.app-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1rem;
}

.app-download-btn {
    /* display: block;
    width: 111px;
    height: 38px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; */
    padding: 10px;
    background-color: #fff;
    /* border: 1px solid #fff; */
    color: #000;
    /* text-decoration: none; */
    font-weight: bold;
    font-size: 10px;
    line-height: 14px;
    border-radius: 5px;
}

.app-download-btn:hover, .app-download-btn:focus {
    text-decoration: none;
    color: #000;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    padding: 0 10px;
}

.close-btn:focus {
    outline: none;
}
