.subscribeAlertContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.subscribeAlertWrapper {
    max-width: 350px;
    width: 90%;
    margin: auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
    animation: fadeIn 0.3s ease;
}

.subscribeTextWrapper {
    margin-bottom: 15px;
    text-align: center;
}

.subscribeText {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: bold;
}

.subscribeBtnsContainer {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.agreeBtn button,
.discardBtn button {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.agreeBtn button {
    background-color: #4caf50;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

.discardBtn button {
    background-color: #ddd;
    color: #333;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
