:root {
    --bulma-warning-h: 41deg;
    --bulma-warning-s: 67%;
    --bulma-warning-l: 50%;

    --cell-dark: #6a6a6a;
    --cell-light: #b5b5b5;
}

.cell {
    color: var(--cell-light);
    opacity: 1;
}

.cell-today {
    background-color: #eeeeee;
}

@media (prefers-color-scheme: dark) {
    .cell {
        color: var(--cell-dark);
    }

    .cell-today {
        background-color: #333333;
    }
}

.cell {
    border: 1px solid;
}


.button.is-multiline {
    white-space: unset;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
}

.tags {
    justify-content: center;
}

.dropdown.is-fullwidth,
.dropdown-trigger.is-fullwidth {
    width: 100%;
    justify-content: flex-start;
}

.button.is-fullwidth {
    justify-content: flex-start;
}


.input::placeholder {
    color: #555 !important;
    /* darker gray */
    opacity: 1;
    /* disables the built-in fade */
}