
/* Install Banner */
#install-banner {
    position: fixed;
    top: 60px;
    left: 12px;
    right: 12px;
    z-index: 45;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    display: none;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
    font-family: "Roboto", sans-serif;
}

.install-banner__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
}

.install-banner__text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.install-banner__title {
    font-size: 14px;
    font-weight: 500;
    color: #1b1d21;
    line-height: 20px;
}

.install-banner__subtitle {
    font-size: 12px;
    font-weight: 300;
    color: #67757c;
    line-height: 18px;
}

#install-banner__btn {
    background: #1565C0;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 18px;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

#install-banner__close {
    background: none;
    border: none;
    color: #aaa;
    font-size: 24px;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    flex-shrink: 0;
}

/* iOS Install Instructions Modal */
#install-ios-modal {
    position: fixed;
    inset: 0;
    z-index: 200000;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: flex-end;
    justify-content: center;
}

.install-ios-modal__card {
    background: #fff;
    border-radius: 16px 16px 0 0;
    padding: 24px 20px 40px;
    width: 100%;
    font-family: "Roboto", sans-serif;
}

.install-ios-modal__title {
    font-size: 17px;
    font-weight: 500;
    color: #1b1d21;
    margin: 0 0 20px;
    text-align: center;
}

.install-ios-modal__step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 0;
    font-size: 14px;
    font-weight: 300;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.install-ios-modal__step:last-of-type {
    border-bottom: none;
}

.install-ios-modal__step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #1565C0;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#install-ios-modal__close {
    margin-top: 20px;
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 10px;
    background: #f0f0f0;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    display: block;
}
