

:root {
		/* COLORS */
    --white-txt:            #DDDDDD;  /* All the white text on the main page */
    --bg-main:              #151A22;  /* Background under all the content */
		--bg-head:              #2F3845;  /* Background of the page head */
		--bg-columns:           #20262F;  /* Background of the 3 columns */
		--bg-text-field:        #151A22;  /* Background color of the Text Field */
		--bg-dropdown:          #3D444E;  /* Background color of dropdowns and input fields */
		--bg-dropdown-hover:    #5F6B7B;  /* Background color of dropdowns and input fields on hover */
		--bg-text-input:        #3D444E;  /* Background color of input fields */
		--bg-text-input-hover:  #5F6B7B;  /* Background color of input fields on hover */
		--top-menu-hover:       #FBE58E;  /* Text color of top menu items when hovered */
		--separators:           #404C5D;  /* Color of vertical & horizontal separator lines */
		--color-titles:         #FBE58E;  /* Text color of the section titles */
		
		/* INFO-BUBBLES */
		--bubble-text:          #DDDDDD;
		--bubble-head-bg:       #143264;   
		--bubble-separator:     #466DAD;
		--bubble-body-bg:       #1C4383;
		
}


html {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
/* Syntax: <thumb-color> <track-color> */
  scrollbar-color: #888 #2F3845;
  scrollbar-width: thin; /* Options: auto, thin, none */
	scrollbar-gutter: stable;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #2F3845;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

body {
    width: 100%;
    font-family: "Roboto", sans-serif;
		color: var(--white-txt); /*#eee*/
    background: var(--bg-main);
    overflow: auto;
		margin: auto;
		padding: 0;
		
}

/* NAVIGATION MENU ON TOP OF THE PAGE */
.head-table {
		background: var(--bg-head); 
		border-width: 0px 0px 2px 0px; 
		border-style: solid; 
		border-color: var(--separators); 
		border-radius: 0px 0px 0px 0px;
		}

/* MODAL CUSTOM FONTS*/
.modal-text-cf {
    line-height: 120%;
    margin-bottom: 0.5em;
    font-size: 1.1em;
}
.modal-text-subtitle-cf {
    line-height: 120%;
    margin-bottom: 0.5em;
    font-size: 1.1em;
    color: #ffd86b;
    padding-top: 0.8em;
}

/* "RESET", "LOAD" and "SAVE" buttons */
#resetBtn {
    background: #841717;
}

#resetBtn:hover {
    background: #B61F1F;
}

#resetBtn:active {
    background: #FD5454;
}

.stdButton {
    color: #eee;
    font-family: Roboto;
    font-size: 0.72em;
    font-weight: bold;
    text-align: center;
		letter-spacing: 2px;
    background: var(--bg-dropdown);
    border: 0px solid #191E25;
    border-radius: 2px;
    padding: 5px 6px 4px 8px;
    /*margin-right: 1px;*/
    margin-left: 5px;
    margin-top: 0px;
    transition: background 0.3s;
    cursor: pointer;
}

.stdButton:hover {
    background: var(--bg-dropdown-hover);
    color: #eee;
    opacity: 1;
}

.stdButton:active {
    background: #727F91;
    border: 0px solid #fff;
    color: #eee;
    opacity: 1;
}

.settingBtn {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal; 
    letter-spacing: normal;
}

.options-box {
    /* RANDOM CHARACTERS + SOUNDS AREA */
    margin-top: 18px;
		margin-bottom: 10px;
		background: var(--bg-columns);
    border: 0px solid #3A4555;
    border-radius: 6px;
    max-width: 100%;
    padding: 0px 0px 0px 0px;
}

.optionBoxTitle {
    font-size: 1.05em;
    display: ;
		
    margin: 10px 0px 10px 0px;
    font-weight: ;
    color: var(--color-titles);
}

.dropdown-sounds {
    box-sizing: ;
    width: ;
    text-align: left;
    position: relative;
    top: -3px;
    font-family: Roboto;
    font-size: 0.90em;
    color: var(--white-txt);
    font-weight: 400;
    margin: 0 0 5px 5px;
    padding: 0px 5px;
    background-color: var(--bg-dropdown);
    border: 1px solid #545F6E;
    border-radius: 2px;
}

/*#################################################
  STYLES FOR THE ALIGNMENT OF THE "SOUND EFFECTS",
  "SHOW BUTTONS" & "SWIPE SPEED" DROPDOWNS
*/
.droplist {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.droplist label {
    width: 170px;    /* WIDTH OF THE LABEL SIDE */
    color: var(--white-txt);
}

.droplist select {
    width: 200px;    /* WIDTH OF THE DROPDOWN CONTAINERS */
    top: 2px;
}
/*##############################################*/

/* SETTINGS PANEL */
.settings-panel {
    width: 80%;
		height: 100vmin;
    min-width: 1240px;
    margin: auto;
    background: var(--bg-columns);
    padding: 0px;
    border: 0px solid #333;
    position: sticky;
    top: 0;
    z-index: 2000;
}

.settings-panel label {
    margin-right: 8px;
    font-size: 0.90em;
}

.settings-panel input {
    text-align: right;
    margin-right: 6px;
    margin-top: 0px;
    font-size: 0.9em;
    padding: 2px 4px;
}

.settings-panel textarea {
    font-size: 1em;
    font-family: inherit;
    background: var(--bg-text-field);
    display: block;
    width: 100%;
    max-width: 900px;
    height: 160px;
    margin-top: 6px;
    padding: 20px;
    border-radius: 2px;
    border: 1px solid #3A4555;
    color: var(--white-txt);
    resize: vertical;
    box-sizing: border-box;
		outline: none;
}

/*.settings-panel textarea:hover {
		outline: 1px solid #5C5C5C;
}*/
.settings-panel textarea:focus {
		outline: 1px solid #1C63C2;
}

.textBoxTitle {
    font-size: 1.05em;
    display: ;
    margin-bottom: 0px;
    font-weight: ;
    color: var(--color-titles);
}

.settings-panel button:hover {
    background: ;
}

/* CUSTOM FONT TOOLTIP START */
.input-with-tooltip {
    position: relative;
    display: inline-block;
}

.input-with-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.tooltip-text {
    visibility: hidden;
    opacity: 0;
    font-size: 0.83em;
    width: 345px;  /* Width of the tooltip Info Cards. */
    background-color: #FAFAD2;
    color: #000;
    border: 1px solid #000;
    text-align: left;
    border-radius: 3px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    left: 100%;
    top: 1;
    margin-left: 0%;
    margin-top: 5px;
    transform: translateX(10px);
    transition: opacity 0.3s ease-in-out, visibility 0.0s ease-in-out;
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 100%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* CONTENT OF PREVIEW PAGES (ANIMATION & STATIC) */
.text-container {
    z-index: 1;
    font-family: Arial, Helvetica, sans-serif;
    white-space: pre-wrap;
    min-height: ;
    transition: color 0.3s, background 0.3s, font-size 0.3s, font-family 0.3s;
    opacity: 1;
    visibility: visible;
}

.text-container p {
    marginxxx: 0 0 1em 0;
    padding: 0;
    display: block;
}


@media (max-width: 600px) {
    .settings-panel textarea {
        font-size: 1em;
    }
}

/* BLUE TOOLTIP (INFO CARDS) */
@keyframes cardAnimation {
  from {
    transform: translateX(200px) translateY(-50%);
    opacity: 0;
  }
  to {
    transform: translateY(0px) translateY(-50%);
    opacity: 1;
  }
}

.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: help;
}

.info-bubble {
  position: fixed;
  width: 500px;
	right: 1%;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--bubble-body-bg);
  border: 0px solid #2666CE;
  border-radius: 8px;
	box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  visibility: hidden;
	letter-spacing: 0px;
}

.bubble-header {
	font-size: 1.35em;
  padding: 12px 20px;
	color: var(--bubble-text);
  background-color: var(--bubble-head-bg);
  border-bottom: 4px solid var(--bubble-separator);
	border-radius: 8px 8px 0px 0px;
  font-weight: bold;
}

.bubble-body {
	font-family: 'Roboto';
	font-size: 1.1em;
	background-color: ;
	border-radius: 0px 0px 8px 8px;
  padding: 0px 20px 16px 20px;
  line-height: 1.30;
  color: var(--bubble-text);
}

.bubble-body ul {
	margin-top: -6px;
	margin-left: 40px;
	margin-bottom: -5px;
  padding: 0;
}

.bubble-body li {
  margin-left: 0px;
  padding-bottom: 4px;
}

.bubble-body h4 {
	color: #FFE454;
	font-size: 1.0em;
	margin-bottom: -8px;
	margin-top: 10px;
	padding-bottom: 0;
}

.bubble-body hr {
  border: none;
  height: 1px;
	margin: 16px 0px -8px 0px;
  background-color: var(--bubble-text);
}

.tooltip-container:hover .info-bubble {
	visibility: visible;
	opacity: 1;
  animation-name: cardAnimation;
  animation-duration: 0.6s;
  animation-timing-function: ease;
  animation-delay: 0.3s;
  animation-iteration-count: ;
  animation-direction: normal;
  animation-fill-mode: backwards;
  animation-play-state: running;
}

.botton-bubble {
	font-family: 'Roboto'; font-size: 1.20em;
}

table {
    width: 100%;
    table-layout: fixed;
}

td {
    width: 100%;
}

.left-text-column {
    width: 15ch;
}
.left-text-column2 {
    width: 18ch;
}

.left-column-1 {
    width: ;
    background: var(--bg-columns);
    vertical-align: top;
    padding: 5px 12px 20px 20px;
    margin-left: 10px;
		border-right: 0px solid #3A4555;
}

.left-column-2 {
    width: ;
    background: var(--bg-columns);
    vertical-align: top;
    padding: 5px 0px 20px 0px;
    margin-left: 10px;
		
		border-right: 0px solid #3A4555;
}

.right-column {
    font-size: ;
    background: var(--bg-columns);
    vertical-align: top;
		border-left: 1px solid var(--separators);
    padding: 10px 25px 20px 20px;
    margin-left: 20px;
    margin-right: 40px;
}

#fontFamily {
		/* Styles for "Font" drop-down list */
		text-align: left;
		min-width: 190px;
		font-family: Roboto;
		font-size: 0.85em;
		font-weight: 400;
		color: var(--white-txt);
		background-color: var(--bg-dropdown);
		border: 0px solid #545F6E;
		border-radius: 4px;
		margin-left: -52px;
		margin-right: 6px;
		margin-top: -10px;
		padding: 2px 4px;
}


#customFontInput {
		font-size: 0.85em;
		font-weight: 400;
    text-align: left;
    background-color: #5F6B7B;
    border: 1px solid #545F6E;
    border-radius: 4px;
    color: var(--white-txt);
    padding-left: 8px;
    min-width: 176px;
    margin-top: 5px;
		margin-left: -52px;
}

#customFontInput::placeholder {
    color: #fff;
    opacity: 0.8;
}

/* FONT STYLE & TEXT ALIGNMENT ICONS */
.iconBtn {
    opacity:0.75;
    width:25px;
}

.iconBtn:hover {
    opacity:1;
    cursor: pointer;
}

input, select {
  cursor: pointer;
}

input[type="radio"],
input[type="checkbox"] {
    width: 18px;
    height: 18px;
		accent-color: green;
		cursor: pointer;
}

.infocard-check-box[type="checkbox"] {
		accent-color: #992222; margin: 0px 0px 0px 10px;
}

/* Spinboxes INPUT text*/
input[type="text"] {
    background-color: var(--bg-text-input);
    font-family: Roboto;
    font-size: 0.80em;
		cursor: pointer;
}

input[type="text"]:hover {
	background-color: var(--bg-text-input-hover);
}


input[type="color"] {
    -webkit-appearance: ;
    width: 54px;
    height: 20px;
    border: none;
    padding: 0px 0px;
    margin-left: 0px;
    border-radius: 3px;
		outline: none;
		cursor: pointer;
}

input[type="color"]:hover {
		border: 1px solid #000;
}

input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 1px;
    background-color: #7E8DA2;
		border: none;
}

input[type="color"]::-webkit-color-swatch {
    border: none;
    border-radius: 2px;
}


.dropdown-slide {
    box-sizing: ;
    width: 155px;
    font-family: Roboto;
    color: var(--white-txt);
    font-weight: normal;
    padding: 0px;
    margin-left: -4px;
    background-color: var(--color-left-col-bg);
    border: 0;
    border-radius: 4px;
    position: relative;
    display: inline-block;
}

/* Firefox-specific styles for the Slide dropdowns */
@-moz-document url-prefix() {
    .dropdown-slide {
        margin-left: 0px;
    }
}

.dropdown-slide:hover {
    background-color: #3D444E;
    position: relative;
    display: inline-block;
}

#leftTitlesSeparator {
    /* Horizontal line under the left column titles (Custom Presets + Settings) */
    height: 1px;
    border-width: 0;
    color: #9E9062;
    background-color: #DABF72;
    margin: 1px 0px 10px 0px;
    width: 320px;
}
#leftTitlesSeparator2 {
    /* Horizontal line under the left column titles (Custom Presets + Settings) */
    height: 1px;
    border-width: 0;
    color: #9E9062;
    background-color: #DABF72;
    margin: 1px 0px 10px 0px;
    width: 350px;
}

#settingsSeparator {
    /* Horizontal line separating the LEFT Settings categories */
    height: 1px;
    border-width: 0;
    background: var(--separators);
    margin: 8px 0px;
    width: 280px;
}

#settingsSeparator2 {
    /* Horizontal line separating the RIGHT Settings categories */
    height: 1px;
    border-width: 0;
    background: var(--separators);
    margin: 8px 0px;
    width: 310px;
}

.setting-text {
    font-family: "Roboto";
    color: var(--white-txt);
    font-size: 1em;
    font-weight: 400;
}


.unit-text {
    font-family: Roboto;
    /*color: #eee;*/
    font-size: 0.9em;
    font-weight: normal;
}


/* Modal Overlay */
.modal-overlay-cf {
    display: none;
    position: fixed;
    z-index: 999999 !important;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    justify-content: center;
    align-items: center;
    animation: fadeInBg 0.4s;
}

/* Modal Content */
.modal-content-cf {
    background: #2F3845;
    color: #f7f7ff;
    border-radius: 14px;
    box-shadow: 0 10px 40px #000b, 0 2px 8px #0007;
    padding: 25px 5px 25px 0px;
    width: 980px;
    /* Make modal 60% of viewport width */
    max-width: 80vw;
    /* Prevent it from exceeding 80vw */
    min-width: 340px;
    /* Optional: keep a minimum width */
    max-height: 80vh;
    font-family: 'Roboto', sans-serif;
		font-size: 1em;
    position: relative;
    opacity: 0;
    transform: scaleX(0.6) scaleY(0.8);
    animation: modalExpand 0.5s cubic-bezier(.4, 1.7, .5, 1) forwards;
    display: flex;
    flex-direction: column;
}

.modal-body-cf {
		font-size: 1.05em;
    overflow-y: auto;
    margin-top: 12px;
		padding: 0px 50px;
    max-height: 52vh;
    padding-right: ;
		background: ;
}

/* Modal Title */
.modal-content-cf h2 {
		padding: 5px 50px;
    margin-top: 0;
    margin-bottom: 0px;
    font-size: 1.45em;
    font-weight: bold;
    color: #ffd86b;
    letter-spacing: 0.02em;
}

.modal-body-cf h3 {
		color: #ffd86b;
		font-size: 1.10em;
		font-weight: bold;
		margin-bottom: -10px;
		padding: 0px;
		}

/* Modal Body Paragraphs */
.modal-body-cf p {
    line-height: 1.25em;
    color: #e3e3e3;
    margin-bottom: 1.2em;
}

.modal-body-cf a {
		color: lightblue;
		text-decoration: none;
		}
.modal-body-cf a:link {
		color: lightblue;
		text-decoration: none;
		}
.modal-body-cf a:hover {
		color: lightblue;
		text-decoration: underline;
		}
.modal-body-cf ul {
		color: #e3e3e3;
		}
.modal-body-cf li {
		color: #e3e3e3;
		padding-bottom:6px;
		}


/* Close Button */
.modal-close-cf {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 30px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close-cf:hover {
    color: red;
}

.modal-content h2 {
		color: #F7DA6D;
    margin-top: 15px;
    padding-right: 20px;
}

@keyframes modalExpand {
    0% {
        opacity: 0;
        transform: scaleX(0.6) scaleY(0.8);
    }
    70% {
        opacity: 1;
        transform: scaleX(1.05) scaleY(1.08);
    }
    100% {
        opacity: 1;
        transform: scaleX(1) scaleY(1);
    }
}

@keyframes fadeInBg {
    from {
        background: rgba(0, 0, 0, 0);
    }
    to {
        background: rgba(0, 0, 0, 0.65);
    }
}

.start-resetArea {
    text-align: right;
}

@keyframes modalExpand {
    0% {
        opacity: 0;
        transform: scaleX(0.6) scaleY(0.8);
    }
    100% {
        opacity: 1;
        transform: scaleX(1) scaleY(1);
    }
}


@keyframes fadeInBg {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#aboutFontsBtn-cf {
    cursor: pointer;
    user-select: none;
}

/* "SET TO 0" BUTTONS */
.input-flex-row {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
}

.input-flex-row input[type="number"] {
    width: 200px;
    text-align: right;
}

.flex-spacer {
    flex-grow: 1;
}

/* START OF "SET TO 0" BUTTONS   */
.reset-btn {
    background: transparent !important;
    border: none !important;
    /*font-size: 1.0em;*/
    cursor: pointer;
    /*padding: 0px 4px;*/
    /*border-radius: 50%;*/
    margin-right: 15px; /*Distance from the right side of the settings panel */
    transition: background 0.5s, color 0.5s;
    /*height: 0px;*/
    display: flex;
    align-items: center;
}

.btn-icon {
    width: 17px;
    height: 17px; 
    display: block; 
    background-image: url('icons/zero-green.png'); 
    background-size: contain; 
    background-repeat: no-repeat; 
    transition: opacity 0.5s ease, filter 0.5s ease; 
    filter: brightness(1.2);
    /* Change 1: Start at semi-opaque */
    opacity: 1; 
}

/* Red button hovered */
.reset-btn:not(.reset-active):hover .btn-icon {
    opacity: 0.9; 
    filter: brightness(1.2);
}

/* Red button not hovered */
.reset-btn.reset-active .btn-icon {
    background-image: url('icons/zero-green.png');
    opacity: 0.3; 
    filter: grayscale(90%); 
}

/* END OF "SET TO 0" BUTTONS   */

.customPresets {
    /* Styles for "Presets" drop-down list */
    text-align: left;
    min-width: 130px;
    font-family: Roboto;
    font-weight: 400;
    color: var(--white-txt);
    font-size: 0.85em;
    background-color: var(--bg-dropdown);
    border: 0px solid #545F6E;
    border-radius: 4px;
    margin-right: 6px;
    margin-top: px;
    padding:2px 4px;
}

.plusButton {
    color: #eee;
    font-family: Roboto;
    font-size: 1em;
    width: 22px;
    height: 22px;
    font-weight: 500;
    text-align: center;
    background-color: var(--bg-dropdown);
    border: 0px solid #545F6E;
    border-radius: 4px;
    padding: 0px 6px 0px 6px;
    margin-top: 0px;
    transition: background 0.3s;
    cursor: pointer;
    vertical-align: middle;
    position: relative;
    top: ;
    left: ;
}

.plusButton:hover {
    background-color: #176D17;
}

.minusButton {
    color: #eee;
    font-family: Roboto;
    font-size: 1em;
    width: 22px;
    height: 22px;
    font-weight: 500;
    text-align: center;
    background-color: var(--bg-dropdown);
    border: 0px solid #545F6E;
    border-radius: 4px;
    padding: 0px 6px 0px 5px;
    margin-top: 0px;
    transition: background 0.3s;
    cursor: pointer;
    vertical-align: middle;
    position: relative;
    top: ;
    left: ;
}

.minusButton:hover {
    background-color: #D30202;
}

#fileName {		/* RETURN TO BUILT-IN PRESETS BUTTON */
		width:275px; 
		background-color: #575F6C; 
		color: white; 
		border: 1px solid #728094; 
		border-radius: 3px; 
		text-align: left;
		}

select#presetsDropdown option.builtin-preset {
    color: lightblue;
}

@keyframes popfade {
    0% {
        opacity: 0;
        transform: scale(.93) translateY(20px);
    }
    60% {
        opacity: 1;
        transform: scale(1.03) translateY(-8px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

#customPromptInput {
    border: 1px solid #b2b2cc;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 30px;
    width: 80%;
    padding: 3px;
    background: #ccc;
    outline: none;
    border: 2px solid #728094;
}

/* --- Custom Number Input Styling --- */
.custom-number-input-wrapper {
    display: flex;
    align-items: center;
    gap: 2px;
}

/* Container for the two stacked buttons (arranges them vertically) */
.buttons-column {
    margin: 0 6px 0 -6px;
    display: flex;
    flex-direction: column;
}

/* Style for the input field itself (now type="text") */
.custom-number-input {
    background-color: var(--bg-text-input);
    color: var(--white-txt);
    padding: 5px;
    border: 0px solid #545F6E;
    border-radius: 4px 0px 0px 4px;
    width: 54px;
    height: 21px;
    box-sizing: border-box;
    text-align: right;
    font-size: 0.80em;
    outline: none;
}

.custom-number-input:hover {
    background-color: ; /*var(--bg-dropdown-hover)*/
    color: var(--white-txt);
    outline: none;
}

/* --- CRITICAL FOR HIDING NATIVE SPINBOX ARROWS (WebKit only now) --- */
/* For WebKit browsers (Chrome, Safari, Edge) on <input type="number"> */
/* These rules are kept for general utility, but won't affect this specific <input type="text"> */
.custom-number-input::-webkit-outer-spin-button,
.custom-number-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Styling for the custom increment and decrement buttons */
.decrement-button,
.increment-button {
    font-family: Roboto, sans-serif;
    background-color: var(--bg-dropdown);
    color: var(--white-txt);
    border: 0px solid #545F6E;
    border-radius: 0;
    padding: 2px 4px;
    cursor: pointer;
    font-size: 0.4em;
		transform: scaleX(1.2);
    line-height: 1;
    user-select: none;
    width: 100%;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

/* Specific border-radius and border removal for the stacked buttons to create a unified look */
.increment-button {
    border-top-left-radius: 0px;
    border-top-right-radius: 4px;
    border-bottom: none;
}

.decrement-button {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 4px;
}

/* Hover effects for the buttons */
.decrement-button:hover,
.increment-button:hover {
    background-color: #6C798B;
}

/* Active (clicked/held down) effects for the buttons */
.decrement-button:active,
.increment-button:active {
    background-color: #999;
    border-color: #bbb;
}

.reset-btn.reset-active.material-symbols-outlined {
    color: #fff !important;
}



/* Buttons bar snippet.css */
#animationButtons {
    display: none;
    position: fixed;
    height: 60px;
    padding: 0;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5); /* */
    z-index: 999;
    white-space: nowrap; /* */
    box-sizing: border-box;
    
    /* Permanent horizontal anchor */
    left: 50%;
}

/* Ensure buttons within don't get squashed */
.animationButton {
    flex-shrink: 0;
}

/* Optional: Ensure buttons inside don't shrink awkwardly */
.animationButton {
    flex-shrink: 0;
}

.animationButton { 
    display: inline-flex;    /* Changed from inline-block */
    align-items: center;     /* Vertically centers children */
    gap: 8px;   /* Optional: adds consistent space between icon and text */
    font-family: "Roboto";
    /* Your existing styles */
    border: none;
    color: white;
    padding: 7px 12px; /* Adjusted horizontal padding for better look */
    text-align: center;
    text-decoration: none;
    font-size: 1em;
		font-weight: 500;
		letter-spacing:0.5px;
    border: 2px solid #373737;
    border-radius: 8px;
    margin: 5px 3px;
    cursor: pointer;
    }

#DownloadPngsModalBtn img {
    vertical-align: -4px;
    /* If middle isn't enough, use a specific value like: */
    /* vertical-align: -4px; */
}
#FadeOutroBtn1 img {
    vertical-align: -2px;
    /* If middle isn't enough, use a specific value like: */
    /* vertical-align: -4px; */
}
#FadeOutroBtn2 img {
    vertical-align: -2px;
    /* If middle isn't enough, use a specific value like: */
    /* vertical-align: -4px; */
}
#gobackBtn img {
    vertical-align: -2px;
    /* If middle isn't enough, use a specific value like: */
    /* vertical-align: -4px; */
}

/* Buttons on Main page */
#startBtn2                  {background-color: #077307;}  /* "Start Animation" */
#startBtn2:hover            {background-color: #079D07;}

#staticPreviewBtn2          {background-color: #31319B;}  /* "Static Preview" */
#staticPreviewBtn2:hover    {background-color: #4343C8;}

/* Buttons on Preview pages */
#gobackBtn                  {background-color: dimgray;}  /* "Back" */
#gobackBtn:hover            {background-color: #919191;}

#replayBtn                  {background-color: #077307;}  /* "Play ► (V)" */
#replayBtn:hover            {background-color: #079D07;}

#ReverseOutroBtn            {background-color: #077307;}  /* "◄ Play (F)" */
#ReverseOutroBtn:hover      {background-color: #079D07;}

#FadeOutroBtn1              {background-color: #088D08;}  /* "◄ Swipe (G)" */
#FadeOutroBtn1:hover        {background-color: #0BAF0B;}

#FadeOutroBtn2              {background-color: #088D08;}  /* "Swipe ► (H)" */
#FadeOutroBtn2:hover        {background-color: #0BAF0B;}

#staticBtn                  {background-color: #CC0000;}  /* "Static (S)" */
#staticBtn:hover            {background-color: #FF0000;}

#staticBtn2                 {background-color: #CC0000;}  /* "Static (S)" #HIDDEN - DO NOT DELETE# */
#staticBtn2:hover           {background-color: #FF0000;}

#showMarginsBtn             {background-color: #7D1694;}  /* "Show/Hide Margins (M) */
#showMarginsBtn:hover       {background-color: #9C20B7;}

#DownloadPngsModalBtn       {background-color: #0058CF;}  /* "▼ Download" */
#DownloadPngsModalBtn:hover {background-color: #1277FF;}

/* Buttons on the "Download PNG Images" modal */
#DownloadPNGSBtn,
#DownloadPNGSBtnBackwards,
#DownloadSwipeOutro01,
#DownloadSwipeOutro02             {background-color: #005000;}  /* Green buttons */
#DownloadPNGSBtn:hover,
#DownloadPNGSBtnBackwards:hover,
#DownloadSwipeOutro01:hover,
#DownloadSwipeOutro02:hover       {background-color: #006400;}


#DownloadSingleBtn                {background-color: #191970;}  /* Blue "Download STATIC TEXT (One frame)" */
#DownloadSingleBtn:hover          {background-color: #292990;}

.custom-layout-btn {
    width: 350px; /* As per your requirement */
    display: flex;
    align-items: center; /* Vertically centers content */
    padding: 10px; /* Base padding */
    position: relative;
}

.icon-left {
    position: absolute;
    left: 15px;
}

.icon-right {
    position: absolute;
    right: 15px;
}

.btn-text {
    width: 100%;
    text-align: center;
    font-size: 16px;
}

#startBtn2, #staticPreviewBtn2 {  /* Start et Static page 1 */
    font-size: 1.1em;
    font-family: Roboto;
    font-weight: 500;
    padding: 6px 20px;
    border: 0px solid #CCCCCC;
}

/* --- SYSTÈME DE MODALES UNIFIÉ --- */
/* 1. L'arrière-plan (Overlay) */
.modal-overlay, 
#customAlertOverlay, 
#customConfirmOverlay, 
#customPromptOverlay,
#PNG-export-modal {
    position: fixed;
    inset: 0;
    z-index: 10000 !important; /* Priorité maximale sur le settings-panel */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8) !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

/* 2. État d'affichage (Classe .active ajoutée par le JS) */
.modal-overlay.active, 
#customAlertOverlay.active, 
#customConfirmOverlay.active, 
#customPromptOverlay.active,
#PNG-export-modal.active {
    opacity: 1 !important;
    pointer-events: all !important;
}

/* 3. La boîte de dialogue (Content) */
.modal-content, 
#customAlert, 
#customConfirm, 
#customPrompt {
    position: relative;
    background: #2F3845 !important;
    border-radius: 10px;
    border: 2px solid #728094;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    padding: 20px;
    min-width: 320px;
    max-width: 90vw;
    text-align: center;
    color: #eee;
    animation: popfade 0.3s ease-out forwards;
}

/* 4. Texte et Boutons à l'intérieur */
.modal-content p,
.modal-content h2 {
    margin-bottom: 20px;
}

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

/* Style des boutons Yes/No/OK */
.modal-buttons button, 
#customConfirm button, 
#customAlert button,
#customPrompt button {
    height: 30px !important;              /* Hauteur fixe */
    display: inline-flex !important;      /* Active le mode Flexbox */
    align-items: center !important;       /* Centre le texte VERTICALEMENT */
    justify-content: center !important;   /* Centre le texte HORIZONTALEMENT */
    padding: 3px 18px !important;         /* Supprime le padding vertical qui décentre le texte */
    line-height: normal !important;       /* Réinitialise la hauteur de ligne héritée */
    box-sizing: border-box !important;    /* Inclut la bordure dans les 30px */
    border: 1px solid #728094;
    border-radius: 4px;
    background: #555F6D;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    user-select: none;    
    /* On s'assure que d'autres styles n'interfèrent pas */
    margin: 0 15px !important;
    font-size: 15px !important;
}

.modal-buttons button:hover,
#customAlert button:hover,
#customConfirm button:hover,
#customPrompt button:hover {
    background: #3399ff;
}

#animationPreviewContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 10px);
  height: 100%;
 
}


/* ── Post-video modal (shown after MOV export when a sound is selected) ── */
.modal-overlay-pv {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.post-video-modal-content {
    position: relative;
    background: #1e2533;
   background: #2F3845 !important;
    color: #fff;
    border-radius: 8px;
    padding: 30px 28px 24px;
    width: min(340px, 90vw);
    text-align: center;
    font-size: 15px;
    line-height: 1.5;
}
.post-video-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    color: #aaa;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
}
.post-video-close:hover { color: #fff; }
/* Animation de la boîte */
@keyframes popfade {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

select:focus, input:focus {
    outline: none;
    /* Optional: also remove box-shadow if some frameworks add it */
    box-shadow: none; 
}

/* If tooltips are disabled globally, override the hover state and cursor */
body.tooltips-disabled .tooltip-container:hover .info-bubble {
    visibility: hidden;
    opacity: 0;
}

body.tooltips-disabled .tooltip-container {
    cursor: default; /* Optional: changes the '?' cursor back to normal */
}
/* ==========================================================================
   START of the NEW VIDEO DOWNLOAD MODALS. 1. DOWNLOAD CHOICES BOX (-dc)
   ========================================================================== */
/* Grid layout style for the download choice modal */
.download-choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
.download-choice-grid button {
    margin-top: 10px;
    padding: 15px 10px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 6px;
    border: 0px solid #555;
    background-color: #435062;
    color: #eee;
    transition: background-color 0.2s;
}
.download-choice-grid button:hover {
    background-color: #5F6B7B;
}

/* 1. Modal Overlay (Centers the modal on the screen) */
.modal-overlay-dc {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent backdrop */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

/* 2. Modal Content Box */
.modal-content-dc {
    background: #2F3845 !important; 
    color: #eee;                   /* White text */
    font-size: 16px;               /* 16px base text size */
    font-family: sans-serif;       /* Clean, modern font */
    padding: 35px 25px 25px 25px;  /* Extra top padding so text doesn't hit the close button */
    min-width: 560px;
    width: 100%;
    border-radius: 8px;            /* Smooth rounded corners */
    position: relative;            /* Crucial anchor for the absolute close button */
    box-sizing: border-box;
    max-width: 500px; 
    border-radius: 10px;
    border: 2px solid #728094;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    animation: popfade 0.3s ease-out forwards;
	
}

/* Modal Title */
.modal-content-dc h2 {
    font-size: 22px;               /* Slightly larger for visual hierarchy */
    color: #F7DA6D;
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
}

/* 3. Top-Right Close Button */
.modal-close-dc {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    color: #ddd;
    font-size: 30px;               /* Larger '×' symbol */
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.3s ease;
}

.modal-close-dc:hover {
    color:red;                  /* Subtle fade effect on hover */
}

/* 4. Horizontal Button Grid Layout */
.download-grid-dc {
    position: relative;
    display: flex;
    gap: 15px;                     /* Creates space between the two buttons */
    justify-content: center;
    width: 100%;
}

/* Action Buttons Style */
.download-grid-dc button {
    flex: 1;                       /* Forces both buttons to be equal width */
    padding: 12px 20px;
    font-size: 16px;               /* 16px button text */
    background-color: #ffffff;     /* White background for high contrast */
    color: #000000;                /* Black text */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.download-grid-dc button:hover {
    background-color: #e0e0e0;     /* Light gray on hover */
}

/*#choiceVideoOverlayBtn, #choicePngSequenceBtn {
    color: white;
    font-size: 18px;
    background: black;
    padding: 10px 20px 10px 20px;
    border: 1px solid #555;
}*/

/* ==========================================================================
   VIDEO DOWNLOAD MODAL STYLING (-vo)
   ========================================================================== */

/* 1. Modal Backdrop Layer */
.modal-overlay-vo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    
    /* FIX 1: Fixed the typo from 'z-indexxx' to 'z-index' */
    z-index: 999999; 
    
    /* Flexbox to center the child element — no !important so JS display:none can override */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 2. Modal Content Panel */
.video-modal-content,
.post-video-modal-content {
    /* REMOVED: position: absolute, top, left, and transform are no longer needed! */
    position:relative;
    background-color: #2F3845;
    color: #ffffff;
    width: 90%;
    max-width: 500px;
    padding: 10px 30px; /* Cleaned up shorthand padding */
    border-radius: 8px;
    border: 2px solid #728094;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
	animation: popfade 0.3s ease-out forwards;
}

/* 3. Modal Header Title (<h2>) */
.video-modal-content h2 {
    margin-top: 15px;                       /* Removes extra top margin alignment issues */
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: ;
    color: #F7DA6D;                        /* Matching light blue application theme color */
    border-bottom-width: 0px;
    border-bottom-style: solid;
    border-bottom-color: #444444;          /* Decorative underline partition separator */
    padding-bottom: 10px;
	   
    /* FIX: Centers the header text nicely inside the box frame */
    text-align: center; 
}

/* 4. Form/Dropdown Rows Wrapper Layout Grid */

.video-modal-content > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    margin-bottom: 12px;
}

/* 5. Inputs & Labels Layout Parameters */
.video-modal-content label {
    font-size: 15px;
    color: #eeeeee;
    font-weight: 400;
    text-align: left;
    user-select: none;
}

/* 6. Form Interactive Elements Styling (Dropdowns & Number Fields) */
.video-modal-content select,
.video-modal-content input[type="number"] {
    background-color: #435062;            /* Inner input fill color */
    color: #eee;                        /* Input typography color */
    font-size: 14px;
    
    padding-top: 6px;
    padding-right: 10px;
    padding-bottom: 6px;
    padding-left: 10px;
    
    border-width: 0px;
    border-style: solid;
    border-color: #728094;
    border-radius: 4px;
    
    width: 160px;                          /* Explicit inline input component width */
    box-sizing: border-box;                /* Guarantees internal padding handles cleanly */
    outline: none;
    transition: border-color 0.2s ease;
}

/* Input / Dropdown Focus Interactive State Changes */
.video-modal-content select:focus,
.video-modal-content input[type="number"]:focus {
    border-color: #728094;                 /* Glow borders matching header focus highlight */
}

/* 7. Modal Close "×" Cross Button Layout Positioning */
.video-modal-close {
    position: absolute;
    top: 12px;
    right: 15px;
    
    background: none ;                     /* Removals of native button background shapes */
    border: none;                          /* Removals of native button frame lines */
    
    color: #aaaaaa;
	  color: #ddd;
    font-size: 30px;
    font-weight: ;
    cursor: pointer;
    line-height: 1;
    padding: 0px;
    transition: color 0.3s ease;
}

/* Modal Close Button Hover Interactive Changes */
.video-modal-close:hover {
    color: red;                        /* Changes to red warning shade when highlighted */
}



/* 8. Conversion Submit Button Block Placement (Matches applicationButton) */
.video-modal-content .animationButton {
    display: block;
    width: 100%;                          /* Spans button to fill whole width profile */
    background-color: #0058CF;            /* Vibrant action emphasis blue block tint */
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    
    margin-top: 25px;                     /* Clean spacing away from parameters block above */
    margin-bottom: 0px;
    
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

/* Conversion Action Button Hover Highlight State Modifications */
.video-modal-content .animationButton:hover {
    background-color: #1277FF;            /* Brightened light blue pop on mouse hover */
}

/* Conversion Action Button Click Interaction Physics */
.video-modal-content .animationButton:active {
    transform: scale(0.98);                /* Slight responsive depression squeeze on click */
}

#status {display: flex; justify-content: center; font-size: 14px; color: #ddd;}

.dwl-btn {background-color: #007bff; }

.dwl-btn:hover {background-color: #3399ff; }

#audio-pop-up-text {
	font-size:18px !important;
	margin-bottom: 30px !important;
	margin-top: 40px !important;
}

#postVideoAudioBtn {
	width:100% !important; 
	height:50px !important;
	margin-top: 10px !important;
	margin-bottom: 25px !important;
	padding: 10px !important;
	background-color: green !important;
	color:white !important;
	font-size:18px  !important;
	border:0px solid white !important;
	border-radius:4px !important;
	}
#headphones-icon {font-size:26px  !important;	}

/* Animation de la boîte */
@keyframes popfade {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Forces the dynamic canvas frame loader to appear on top of the modal setup */
#exportProgressOverlay {
    z-indexxx: 1000000 !important; /* One layer higher than the video modal overlay */
}


/* HOLD LAST FRAME spinbox START */
.control-item {
		display: flex;
		flex-direction: row;
		align-items: flex-start;
}

.label-row {
		display: flex;
		align-items: center;
		gap: 6px;
		margin-bottom: 6px;
		width: 100%;
}


.spinbox-container {
		position: relative;
		display: block;
		width: 160px;
}

/* Container needs to be inline-block or a specific width to match your layout 
.spinbox-wrapper {
    position: relative;
    display: inline-block;
}*/

/* The actual input field */
.spinbox-container input[type="number"] {
    /* Make sure there is enough padding on the right so the numbers don't overlap the "ms" */
    padding-right: 35px; 
    text-align: right; /* Optional: looks very clean for numbers with units */
}

/* The permanent "ms" overlay */
.spinbox-container::after {
    content: "ms";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: #ddd; /* A nice subtle grey so it looks like a unit */
    font-size: 0.9em;
    pointer-events: none; /* Crucial: clicks pass right through to the input underneath */
}

/* Extra cleanup: Hides native browser spin buttons (Chrome, Safari, Edge, Firefox) */
.spinbox-container input[type="number"]::-webkit-outer-spin-button,
.spinbox-container input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.spinbox-container input[type="number"] {
    -moz-appearance: textfield; /* Firefox */
}

#holdMsInput {
		text-align: right;
		width: 100%;
		background-color: #435062;
		color: #eee;
		border: 0px solid #777;
		padding: 6px 55px 6px 8px;
		box-sizing: border-box;
		-moz-appearance: textfield; 
		height: 32px;
}

#holdMsInput::-webkit-outer-spin-button,
#holdMsInput::-webkit-inner-spin-button {
		-webkit-appearance: none;
		margin: 0;
}

.spinbox-buttons {
		position: absolute;
		right: 1px;
		top: 1px;
		bottom: 1px;
		width: 22px;
		display: flex;
		flex-direction: column;
		border-left: 1px solid #2F3845;
		border-top-right-radius: 4px;
		border-bottom-right-radius: 4px;
		overflow: hidden;
}

.spinbox-buttons button {
		flex: 1;
		background-color: #435062;
		border: none;
		cursor: pointer;
		background-repeat: no-repeat;
		background-position: center;
		background-size: 14px;
		padding: 0;
}

.spinbox-buttons button:hover {
		background-color: #728093; 
}

#spinUp {
		background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'><path fill='%23eeeeee' d='M300.3 199.2C312.9 188.9 331.4 189.7 343.1 201.4L471.1 329.4C480.3 338.6 483 352.3 478 364.3C473 376.3 461.4 384 448.5 384L192.5 384C179.6 384 167.9 376.2 162.9 364.2C157.9 352.2 160.7 338.5 169.9 329.4L297.9 201.4L300.3 199.2z'/></svg>");
		border-bottom: 1px solid #2F3845; /* Small divider line between the two buttons */
}

#spinDown {
		background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'><path fill='%23eeeeee' d='M300.3 440.8C312.9 451 331.4 450.3 343.1 438.6L471.1 310.6C480.3 301.4 483 287.7 478 275.7C473 263.7 461.4 256 448.5 256L192.5 256C179.6 256 167.9 263.8 162.9 275.8C157.9 287.8 160.7 301.5 169.9 310.6L297.9 438.6L300.3 440.8z'/></svg>");
}
/* HOLD LAST FRAME spinbox END */

details::details-content {
  opacity: 0;
  block-size: 0;
  overflow: hidden;
  transition: opacity 1.5s ease, block-size 0.9s ease, content-visibility 0.9s allow-discrete;
}

details[open]::details-content {
  opacity: 1;
  block-size: auto; /* Interpolates to intrinsic size */
}

summary, p {margin: 12px; line-height:1.2}



/* ==========================================================================
   SYMBOLS DROPDOWN MODIFICATIONS (No !important required)
   ========================================================================== */

/* Dropdown Container */
.symbol-dropdown {
    position: relative; 
    display: inline-block;
	color: var(--white-txt) ;
	background-color: var(--bg-dropdown) ;
	border-radius: 4px;
}

/* Main Trigger Button */
.symbol-dropdown .symbol-btn {
    background: #3D444E; 
    color: #eee; 
    border: 0px solid #555; 
    padding: 4px 15px; 
    border-radius: 4px; 
    cursor: pointer; 
    font-size: 0.85em; 
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}
.symbol-dropdown .symbol-btn i {
    font-size: 0.8em; 
    margin-left: 5px;
}
/* Easily change main button hover styles here */
.symbol-dropdown .symbol-btn:hover {
    background: #5E6A7A;
    color: #fff;
}

/* Dropdown Menu Box */
.symbol-dropdown .symbol-menu {
    position: absolute; 
    right: 0; 
    top: 110%; 
    background: #2F3845; 
    border: 1px solid #555; 
    border-radius: 4px; 
    padding: 8px; 
    width: 460px; 
    z-index: 1000; 
    box-shadow: 0px 4px 10px rgba(0,0,0,0.5);
}

/* Tabs Navigation Container */
.symbol-dropdown .symbol-tabs {
    display: flex; 
    justify-content: space-between; 
    border-bottom: 1px solid #444; 
    margin-bottom: 8px; 
    padding-bottom: 4px;
}

/* Scoped Tabs Specificity to avoid theme conflicts */
.symbol-dropdown .symbol-tab {
    background: transparent;
    border: none;
    color: #888;
    padding: 4px 8px;
    font-size: 0.8em;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.2s, border-bottom 0.2s;
    border-bottom: 2px solid transparent;
}

.symbol-dropdown .symbol-tab:hover {
    color: #ddd;
    background: transparent; /* Prevents inheritances from global button styles */
}

.symbol-dropdown .symbol-tab.active {
    color: #fff;
    border-bottom: 2px solid #FBE58E; /* Uses your theme's gold accent color */
}

.sym-item {
    color: #fff;
    font-size: 1.5em;
    padding: 4px;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.15s ease;
    user-select: none;
}

.sym-item:hover {
    background: #20262F;
}

/* Text Field Zoom Buttons */
.zoom-container {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  margin: 5px 0px 0 16px;
}

.zoom-btn {
  background: #3D444E;
  border: 0px solid #525B69;
  border-radius: 4px;
  color: #ddd;
	font-weight: bold;
	height: 24px;
  
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  
  padding: 0px 4px;
	margin: -5px 0 0 0;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}

.zoom-btn:hover {
  background: #525B69;
}

.zoom-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
	stroke: currentColor;
  stroke-width: 0.6px; 
  stroke-linejoin: round;
  stroke-linecap: round;
}