.lsm .translation {
	padding-right: 1rem;
}

.lsm .help-info {
	color: red;
	line-height: 1.5;
}

.lsm .help-info, 
.lsm .play-count {
	font-size: 13px;
	font-size: 0.8125em;
}

.lsm .current-playback {
	background-color: #f0f0f0;
	transition: background-color 1s;
}

.lsm .current-playback .entry-title a {
	color: red;
	transition: color 1s;
}

.lsm .current-playback .entry-title p {
	color: blue;
	transition: color 1s;
}

.lsm #filter-categories {
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid #f3f3f3;
	padding-bottom: 28px;
	/*margin-bottom: 10px;*/
	text-align: center;
}

.lsm #dictionary-dropdown {
	padding: 3px 5px;
	margin: 0px auto;
	max-width: 350px;
	width: 100%;
}

#lsm-settings {
	flex: 1 1 100%;
	max-height: 0;
	opacity: 0;
	visibility: hidden;
	transition: max-height 1s, padding 1s, opacity 0.75s, visibility 0.75s;
}

#lsm-settings-form {
	position: relative;
	background-color: whitesmoke;
	margin: 7px 0px 10px;
	padding: 15px 0px 15px;
	z-index: 1;
}

#lsm-settings .grid-table {
	display: grid;
	grid-template-columns: 1fr 150px;
	max-width: 350px;
	margin: 7px auto;
	padding: 5px;
	position: relative;
	z-index: 1;
}

#lsm-settings .grid-table > * {
	margin: 2px;
}

#lsm-settings .grid-table input {
	color: #000000;
}

#lsm-settings-toggle {
	color: blue;
	font-size: 14px;
	font-size: 0.875em;
	z-index: 1;
}

#lsm-settings-toggle .close-lsm, 
#lsm-settings-toggle[aria-expanded="true"] .toggle-lsm {
	display: none;
}

#lsm-settings-toggle .toggle-lsm, 
#lsm-settings-toggle[aria-expanded="true"] .close-lsm {
	display: inline-block;
}

#lsm-settings-toggle[aria-expanded="true"] ~ #lsm-settings {
	max-height: 750px;
	padding: 7px 0px 0px;
	opacity: 1;
	visibility: visible;
}

#lsm-settings-submit {
	position: relative;
	width: 100px;
	z-index: 1;
}

.lsm .input-settings {
	display: flex;
	flex-wrap: wrap;
	column-gap: 1px
}

.lsm .input-settings input[type="checkbox"] {
	flex: 1;
	margin: 0px 50px 0px 5px;
}

.lsm #displayEntire:checked ~ * {
	cursor: default;
	pointer-events: none;
	opacity: 0.33;
}

.lsm .value-control {
	flex: 1;
	user-select: none;
	width: 25%;
}

.lsm .input-settings input[type="text"] {
	width: 50%;
}

.lsm article {
	/*margin: 15px 0px;*/
	padding: 7px 0px 7px 10px;
}

.lsm article:nth-child(odd) {
    /*background-color: aquamarine;*/
}

.lsm article:nth-child(even) {
    /*background-color: beige;*/
}

.lsm :disabled {
	cursor: default;
	pointer-events: none;
}

.lsm #playlist-bar {
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
	line-height: 2;
	padding: 5px 0px;
	text-align: center;
	background: royalblue;
	border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
	bottom: 0px;
	left: 0;
	position: fixed;
	width: 100%;
	z-index: 1;
}

.lsm #playlist-bar > *:not(:nth-child(4)):not(:nth-child(5)) {
	flex: 0 0 calc(33.33% - 10px);
	margin: 5px;
}

#lsm-update-holder, 
.lsm #playlist-btn, 
#lsm-settings-toggle {
	order: 1;
}

.lsm .entry-title, .lsm .audio-section {
	display: inline-flex;
	flex-direction: column;
	row-gap: 10px;
	vertical-align: middle;
}

.lsm .entry-title p {
	font-weight: normal;
	margin: 5px 0px 0px 0px;
}

.lsm .front-post .entry-title {
	margin: 0px;
	padding: 5px 0px 5px;
	width: calc( 100% - 50px );
}

.lsm .front-post .entry-title > * {
	/*line-height: 1.5;*/
}

.lsm .audio-section {
	display: inline-flex;
	align-items: center;
	justify-content: right;
	width: 50px; /* lățime fixă pentru tag-ul audio */
}

.lsm .play-audio-btn {
	background: transparent;
	border: none;
	padding: 5px 0px;
	width: 32px;
}

.lsm .skip-audio, .lsm .audio-unchecked {
	display: none;
}

.lsm .skip-audio:checked ~ .audio-checked {
	display: none;
}

.lsm .skip-audio:checked ~ .audio-unchecked {
	display: initial;
}

.lsm .skip-audio:disabled ~ label[for^="skip-audio-"], 
.lsm .skip-audio:disabled ~ .audio-tooltip {
	cursor: default;
	pointer-events: none;
	opacity: 0.33;
}

.lsm label[for^="skip-audio-"] {
	cursor: pointer;
	text-align: center;
	width: 20px;
}

.lsm .audio-tooltip {
	position: relative;
	display: inline-flex;
	justify-content: center;
	cursor: pointer;
	font-size: 14px;
	font-size: 0.875em;
	width: 20px;
}

.lsm .audio-tooltip:before {
	content: "?";
	opacity: 0.33;
}

.lsm .audio-tooltip[title]:focus::after {
	content: attr(title);
	position: absolute;
	top: 15px;
	right: 0px;
	color: #000;
	background-color: #fff;
	border: 1px solid;
	width: fit-content;
	padding: 3px;
	font-size: 10px;
	text-align: center;
}

@media screen and (max-width: 640px) {

	.lsm .front-post .entry-title, .entry-summary {
		font-size: 18px;
		font-size: 1.125em;
	}

}

@media screen and (max-width: 800px) {

	.lsm #site-content {
		margin-top: 1.5rem;
	}

}
