@import url('./crmcore.css');

html {
    --lumo-border-radius: calc(var(--lumo-size-m) / 4); /* Decreased radius */

    /* Updated primary color settings */
    --lumo-primary-color: rgb(0, 123, 255); /* New primary color */
    --lumo-primary-color-50pct: rgba(0, 123, 255, 0.5);
    --lumo-primary-color-10pct: rgba(0, 123, 255, 0.1);
    --lumo-primary-text-color: rgb(0, 123, 255); /* New primary text color */

    /* Light blue color (kept from before) */
    --lumo-light-blue: rgb(173, 216, 230);
    --lumo-light-blue-50pct: rgba(173, 216, 230, 0.5);
    --lumo-light-blue-10pct: rgba(173, 216, 230, 0.1);

    /* Text color and background color */
    --lumo-body-text-color:light black; /* All text should be white */
    --lumo-background-color: rgb(34, 34, 34); /* Dark background color */
}

body {
    color: black; /* Set text color to black */
    background-color: white; /* Set background color to white */
}

/* Hover state */
/*body:hover {
    background-color: rgb(240, 240, 240); *//* Light gray instead of white on hover *//*
}*/
