/* Estilo base para o prompt de notificação */
.notification-prompt {
    display: none;
    position: fixed;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 15px;
    font-family: Arial, sans-serif;
}

/* Estilo para desktop - canto superior direito */
.notification-prompt.desktop {
    top: 20px;
    right: 20px;
    width: 300px;
    animation: slideInRight 0.5s ease;
}

/* Estilo para mobile - banner inferior */
.notification-prompt.mobile {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    border-radius: 12px 12px 0 0;
    animation: slideInUp 0.5s ease;
}

/* Conteúdo do prompt */
.notification-prompt-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification-prompt-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.notification-prompt-message {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Botões */
.notification-prompt-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.notification-prompt-button {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    min-width: 120px;
}

/* Estilo específico para mobile */
@media (max-width: 768px) {
    .notification-prompt.mobile {
        padding: 20px;
    }

    .notification-prompt-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .notification-prompt-button {
        width: 100%;
        padding: 15px 30px;
        font-size: 18px;
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.notification-prompt-allow {
    background: #16a34a;
    color: white;
}

.notification-prompt-allow:hover {
    background: #15803d;
}

.notification-prompt-deny {
    background: #f3f4f6;
    color: #666;
}

.notification-prompt-deny:hover {
    background: #e5e7eb;
}

/* Animações */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .notification-prompt.desktop {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .notification-prompt.mobile {
        display: none !important;
    }
}
