@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
}

.task-action-button {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.task-action-button:hover {
    transform: translateY(-1px);
}
