/* define SavedViewButton */
.SavedViewButton {
    text-align: left;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    min-height: 35px;
    border-radius: 0.25rem;

    /* Adding !important here to override border styles from dayshape-bootstrap that are already marked as important */
    border-color: var(--primary-accent) !important;
    background-color: var(--surface-primary-subtle);
}

.SavedViewButton:hover,
.SavedViewButton:focus {
    /* Adding !important here to override border styles from dayshape-bootstrap that are already marked as important */
    border-color: var(--border-primary) !important;
    background-color: var(--primary-accent);
}

.SavedViewButton-text {
    color: var(--text-accent);
}

.SavedViewButton-star {
    color: var(--icon-subtle);
    flex-shrink: 0;
}
