/* Visualmente claros os indisponíveis; mantém cliques bloqueados nesses */
#qv-add-btn.btn-disabled {
    background-color: #999 !important;
    cursor: not-allowed;
}

/* Sistema de Notificações */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
}

.notification {
    background: white;
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(400px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    border-left: 4px solid var(--rf-pink-main);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.success {
    border-left-color: var(--rf-pink-main);
}

.notification.error {
    border-left-color: var(--rf-brown);
}

.notification-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.success .notification-icon {
    background-color: var(--rf-pink-main);
}

.error .notification-icon {
    background-color: var(--rf-brown);
}

.notification-content {
    flex: 1;
    text-align: left;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--rf-brown-gray);
}

.notification-message {
    font-size: 0.9rem;
    color: var(--rf-brown-gray);
    opacity: 0.8;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--rf-brown-gray);
    opacity: 0.7;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    opacity: 1;
}

@media (max-width: 480px) {
    .notification-container {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}



/* Estilos para o modal de desenvolvimento */
.development-icon {
    background: linear-gradient(135deg, #3B71FE20, #3B71FE10);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px dashed #3B71FE40;
}

.alert-info {
    background-color: #f0f7ff;
    border-left: 4px solid #3B71FE;
    border-radius: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #3B71FE, #2a5bd7);
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mr-10 {
    margin-right: 10px;
}

.mr-5 {
    margin-right: 5px;
}