﻿/* core.css */
/* core.css */
body {
    font-family: 'Roboto', sans-serif; /* Consistent font across the app */
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}


button {
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

    button:hover {
        opacity: 0.9;
    }
