/* style.css */

/* Importação da Fonte */
@font-face {
    font-family: 'Almond Milky';
    src: url('fonts/Almond-Milky.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    /* Fonte padrão para todo o sistema (modais, tabelas, menus) */
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden; /* Evita scroll horizontal indesejado */
    color: rgba(0, 0, 0, 0.8); /* Cor padrão para textos do corpo */
}

/* Classe utilitária para a cor solicitada (Preto 80%) */
.text-black-80 {
    color: rgba(0, 0, 0, 0.8) !important;
}

/* Classe utilitária para a fonte personalizada (apenas Títulos e Tarefas) */
.font-custom {
    font-family: 'Almond Milky', 'Comic Sans MS', sans-serif;
}

/* Custom Scrollbar para os modais */
.custom-scroll::-webkit-scrollbar {
    width: 8px;
}
.custom-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.custom-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Text Shadow removido conforme solicitado */
.text-shadow {
    text-shadow: none;
}