@tailwind base;
@tailwind components;
@tailwind utilities;

/* Glassmorphism Effect */
.glassmorphism {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Estilos para o botão flutuante de tema */
#theme-toggle {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Custom Shepherd.js Styles */
.shepherd-element {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    color: #f3f4f6; /* cinza claro para o texto */
}

.shepherd-title {
    color: #fff; /* branco para o título */
    font-weight: bold;
}

.shepherd-text {
    color: #d1d5db; /* cinza ainda mais claro */
}

.shepherd-button {
    background-color: #6366f1;
}
.shepherd-button:hover {
    background-color: #4f46e5;
}

.shepherd-button:hover {
    background-color: #4f46e5; /* cor primária mais escura */
}

.shepherd-button.shepherd-button-secondary {
    background-color: transparent;
    border: 1px solid #d1d5db; /* cinza claro para o botão de 'Voltar' ou 'Pular' */
    color: #d1d5db;
}

.shepherd-button.shepherd-button-secondary:hover {
    background-color: rgba(209, 213, 219, 0.1);
}

/* Estilos para Toast Notifications */
#toast-container {
    position: fixed;
    top: 1.5rem; /* 24px */
    right: 1.5rem; /* 24px */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* 12px */
}

.toast {
    padding: 1rem; /* 16px */
    border-radius: 0.5rem; /* 8px */
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success {
    background-color: #22c55e; /* green-500 */
}

.toast.error {
    background-color: #ef4444; /* red-500 */
}