/* Sfera.az Notification Popup Styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

.digix-popup-container { 
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    width: 350px; 
    background: #D92D20; 
    color: white; 
    border-radius: 12px; 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); 
    font-family: 'Roboto', sans-serif; 
    z-index: 999999; 
    overflow: hidden; 
    transform: translateY(200%); 
    animation: slide-up 0.5s forwards ease-out; 
}

@keyframes slide-up { 
    to { transform: translateY(0); } 
}

.digix-popup-content { 
    padding: 20px; 
}

.digix-popup-header { 
    display: flex; 
    align-items: center; 
    font-size: 18px; 
    font-weight: 700; 
    margin-bottom: 8px; 
}

.digix-popup-header span { 
    color: #fff !important;
}

.digix-popup-header img { 
    width: 24px; 
    height: 24px; 
    margin-right: 10px; 
}

.digix-popup-body { 
    font-size: 14px; 
    line-height: 1.5; 
    margin-bottom: 16px; 
    opacity: 0.9; 
    color: #fff !important;
}

#sfera-subscriber-email {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

#sfera-subscriber-email::placeholder {
    color: #999;
}

#sfera-subscriber-email:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.digix-popup-actions { 
    display: flex; 
    gap: 10px; 
}

.digix-popup-button { 
    flex-grow: 1; 
    padding: 10px; 
    border: none; 
    border-radius: 8px; 
    font-size: 14px; 
    font-weight: 500; 
    cursor: pointer; 
    transition: all 0.2s ease; 
    text-align: center; 
    pointer-events: auto;
    z-index: 1000000;
}

.digix-popup-button-primary { 
    background-color: #ffffff; 
    color: #D92D20; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.digix-popup-button-primary img { 
    width: 16px; 
    height: 16px; 
    margin-right: 8px; 
}

.digix-popup-button-primary:hover { 
    background-color: #f1f3f5; 
}

.digix-popup-button-secondary { 
    background-color: transparent; 
    color: #ffffff; 
    border: 1px solid rgba(255, 255, 255, 0.5); 
}

.digix-popup-button-secondary:hover { 
    background-color: rgba(255, 255, 255, 0.1); 
}

@media (max-width: 480px) { 
    .digix-popup-container { 
        bottom: 10px; 
        right: 10px; 
        left: 10px; 
        width: auto; 
    }
}
