/* ---------------------------------------------------------*/
/* thicker-horizontal-bar --------------------------------- */
body {
  --hr-color: #773020;   /* Change to your custom color */
  --hr-thickness: 6px;   /* Change to your desired thickness */
}

/* ---------------------------------------------------------*/
/* Applies to both Reading and Editing / Live Preview modes */
hr, .cm-embed-block hr, .markdown-rendered hr {
  border: none !important;
  border-top: var(--hr-thickness) solid var(--hr-color) !important;
  background-color: transparent !important;
}

/* ---------------------------------------------------------*/
	/* For inline code in Live Preview/Source Mode */
	.cm-s-obsidian span.cm-inline-code:not(.cm-formatting) {
	  color: orange;
	  /* background-color: pink; */
	}
	/* For inline code in Reading Mode */
	.markdown-rendered :not(pre) > code {
	  color: orange ;
	  /* background-color: pink; */
	}

  /* ---------------------------------------------------------*/
:root {
	--list-item-spacing: 0.5em;
}
/* reading mode */
:is(ul, ol) li {
	margin-bottom: var(--list-item-spacing);
	&:last-child {
		margin-bottom: unset;
	}
}

/* edit mode */
.markdown-source-view.mod-cm6 .cm-contentContainer > .cm-content .cm-line.HyperMD-list-line {
    padding-bottom: var(--list-item-spacing) !important;
    &:last-child {
        padding-bottom: unset !important;
    }
}