.fcm-prompt {
    position: fixed;
    top: 17px;
    right: 0;
    bottom: auto;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 900000;
}

.fcm-prompt.is-visible {
    display: flex;
}

.fcm-prompt .fcm-prompt__modal {
    background: #ffffff;
    color: #1a1a1a;
    width: 400px;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 16px rgba(26, 26, 26, 0.2);
    font-family: "FormaDJRMicro-Regular";
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    box-sizing: border-box;
}

.fcm-prompt .fcm-prompt__header {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.fcm-prompt .fcm-prompt__logo {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
}

.fcm-prompt .fcm-prompt__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fcm-prompt .fcm-prompt__title {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

.fcm-prompt .fcm-prompt__body {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}

.fcm-prompt .fcm-prompt__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.fcm-prompt .fcm-prompt__btn {
    width: 176px;
    padding: 8px 12px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #024ad8;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    font-family: "FormaDJRMicro-Regular";
    transition: none;
}

.fcm-prompt .fcm-prompt__btn--primary {
    background: #024ad8;
    color: #ffffff;
    width: 176px;
    padding: 8px 16px;
}

.fcm-prompt .fcm-prompt__actions .fcm-prompt__btn:hover {
    border: none;
    font-size: 16px;
    line-height: 20px;
    font-family: "FormaDJRMicro-Regular";
    font-weight: 400;
    transition: none;
    background: #c9e0fc !important;
}

.fcm-prompt .fcm-prompt__actions .fcm-prompt__btn--primary:hover {
    border: none;
    font-size: 16px;
    line-height: 20px;
    font-family: "FormaDJRMicro-Regular";
    font-weight: 400;
    transition: none;
    background: #103fb2 !important;
    color: #ffffff !important;
}

.fcm-prompt .fcm-prompt__actions .fcm-prompt__btn:not(.fcm-prompt__btn--primary):hover {
    color: #024ad8 !important;
}

@media (max-width: 767px) {
    .fcm-prompt {
        top: 16px;
    }

    .fcm-prompt .fcm-prompt__modal {
        width: 100%;
        min-width: 200px;
        max-width: 288px;
    }

    .fcm-prompt .fcm-prompt__header {
        align-items: flex-start;
    }

    .fcm-prompt .fcm-prompt__text {
        min-width: 0;
    }

    .fcm-prompt .fcm-prompt__body {
        min-width: 100%;
        white-space: normal;
    }

    .fcm-prompt .fcm-prompt__actions {
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        gap: 12px;
    }

    .fcm-prompt .fcm-prompt__btn {
        width: 100%;
    }

    .fcm-prompt .fcm-prompt__btn--primary {
        width: 100%;
    }
}
