:root {
    --text-color: #e5e5e5;
	--linear-gradient-color: #000000c7;
	--background-color: #ddd;
	--button-text-color: #ffffffa2;
	--button-active-focus-hover-text-color: #ffffff;
	--table-header-text-color: rgb(255, 255, 255);
	--tabulator-row-odd-background-color: #333333;
	--tabulator-row-even-background-color: #202020;
	--tabulator-row-hover-background-color: #000000;
	--tabulator-col-background: #e6e6e6;
	--tabulator-col-and-header-background-color: #202020;
	--tabulator-col-and-header-color: #ffffff;
	--tabulator-cell-color: #e5e5e5;
	--tabulator-cell-green-category-color: rgb(5, 211, 5);
	--tabulator-cell-red-category-color: rgb(255, 96, 96);
	--tabulator-cell-yellow-category-color: rgb(244, 255, 96);
	--tabulator-footer-background-color: #202020;
	--calc-wallet-background-color: #202020;
	--settings-icon-stroke: #ffffff;
	--settings-panel-button-background-color: transparent;
}

html,
body {
    all: unset;
	height: 100vh;
}
input {
	all: unset;
	background-color: transparent;
	color: inherit;
	font: inherit;
	text-align: center;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 50px var(--calc-wallet-background-color) inset;
    -webkit-text-fill-color: var(--text-color);
}
input:-webkit-autofill-selected {
    -webkit-box-shadow:0 0 0 50px var(--calc-wallet-background-color) inset;
    -webkit-text-fill-color: var(--text-color);
}
.paracalc-input {
	width: 100%;
	text-align: right;
}
.paracalc-input::-webkit-inner-spin-button {
	display: none;
}
#main {
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	overflow: hidden;
}
#data-panel {
	height: 95%;
	overflow-y: scroll;
	align-content: center;
	text-align: center;
}
.page {
	display: flex;
	flex-direction: column;
	width: fit-content;
	margin: auto;
	padding-top: 2%;
	padding-bottom: 3%;
}
#tabs-panel {
	height: fit-content;
	display: flex;
	justify-content: space-between;
}
#tabs-selector {
	background: linear-gradient(+120deg, transparent, var(--linear-gradient-color), transparent);
	display: flex;
	width: fit-content;
}
#settings {
	position: absolute;
	right: 0%;
	height: 3%;
	width: 3%;
	margin-top: 0%;
	margin-right: 3%;
}
#settings-panel {
	border: transparent;
	border-radius: 5px;
	position: absolute;
	right: 0%;
	height: 100%;
	z-index: 999;
	width: 190px;
	background-color: var(--background-color);
	overflow-y: scroll;
}
.invisible {
	display: none;
}
.visible {
	display: flex;
	flex-direction: column;
}
.menu-item {
	text-transform: uppercase;
	text-align: left;
}
.date-input {
	border: transparent;
	text-align: left;
}
.date-input::-webkit-calendar-picker-indicator {
	filter: invert(100%);
}
.bg-img {
	background-image: url("/images/dark/1.jpg");
}
#settings-panel .atuin-btn {
	background-color: var(--settings-panel-button-background-color);
}
.main-tables-category {
	all: inherit;
	width: 100%;
	border: transparent;
	color: var(--button-text-color);
	text-transform: uppercase;
	cursor: pointer;
}
.atuin-btn {
	display: inline-flex;
	margin: 10px;
	text-decoration: none;
	border: transparent;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
	font-size: 17px;
	line-height: 17px;
	padding: 5px 17px;
	color: var(--button-text-color);
	font-weight: bold;
	text-transform: uppercase;
	text-align: center; 
	font-family: "Roboto", sans-serif;
	transition: box-shadow 0.3s, transform 0.3s;
	cursor: pointer;
	background-color: inherit;
}
.atuin-btn:before {
	content: "";
	position: absolute;
	top: 0;
	left: -50%;
	width: 100%;
	height: 100%;
	background: linear-gradient(-45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.7s;
}
.atuin-btn:hover:before {
	left: 100%;
}
.active {
    transform: translateY(-4px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
	color: var(--button-active-focus-hover-text-color);
}
.atuin-btn:hover,
.atuin-btn:active,
.atuin-btn:focus {
	transform: translateY(-4px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
	color: var(--button-active-focus-hover-text-color);
}
.text-uppercase {
	text-transform: uppercase;
}

.cls-1{
	fill: none;
	stroke: var(--settings-icon-stroke);
	stroke-linecap: round;
	stroke-miterlimit: 10;
	stroke-width: 11px;
}

#loader {
    display: none;
    position: absolute;
    left: 47%;
    top: 47%;
    width: 250px;
    height: 250px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top-color: #9370DB;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top-color: #FF00FF;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top-color: #BA55D3;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}