@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6; /* bg-gray-100 */
}

/* --- Loader Animation --- */
.loader {
    border: 8px solid #e5e7eb; /* gray-200 */
    border-top-color: #1B7BCC; /* Cor do TasteTrack */
    border-radius: 50%;
    animation: spinner 1s linear infinite; /* Animação mais rápida */
}

@keyframes spinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animação de Carregamento do Painel Principal */
#loading-overlay .animate-spin {
    border-top-color: #1B7BCC; /* Cor da logo TasteTrack */
    border-bottom-color: #1B7BCC; /* Cor da logo TasteTrack */
}


/* --- Custom Modal for Notifications --- */
.custom-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
}

.custom-modal-content {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.hidden {
    display: none !important;
}

