@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    font-family: 'Ubuntu', sans-serif;
    color: black;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    /* max-width: 1280px; */
    margin: auto;
    margin-top: 100px;
    /* padding: 0 50px 50px 50px; */
    background-color: #F5F5F5;
}

h1 {
    color: #FC6620;
    text-align: center;
    font-weight: lighter;
}

h2 {
    color: #222222;
    text-align: center;
    font-weight: lighter;
}

h3 {
    text-align: center;
}

/* hr {
    color: #FC6620;
    border: none;
    height: 2px;
    background: #FC6620;
    margin: auto;
    width: 600px;
    margin-bottom: 25px;
    margin-top: 25px;
    box-shadow: 0 5px 10px #FC6620;
} */

hr {
    border: none;
    width: 500px;
    height: 50px;
    margin-top: 0;
    border-bottom: 2px solid #FC6620;
    box-shadow: 0 20px 20px -20px #FC6620;
    margin: -50px auto 10px;
}

input,
option {
    text-align: center;
}

.td-scroll {
    max-height: 40px;
    overflow: scroll;
    text-align: left;
    padding: 0px;
    margin: 0px; /* 5px 0 5px; */
    width: 200px;
}

.td-scroll-td {
    border-left: 1px dashed rgba(100, 100, 100, 0.5);
}

.td-scroll-td.custom {
    border-left: 1px dashed rgba(100, 100, 100, 0.5);
    border-right: 1px dashed rgba(100, 100, 100, 0.5);
}

.btn {
    color: #FFFFFF;
    background-color: #FC6620;
    border: 2px solid rgba(50, 50, 50, 0.5);
    border-radius: 5px;
    font-size: 16px;
    padding: 2 50 2 50px;
}

.btn-delete {
    color: #FC6620;
    background-color: #FFFFFF;
    border: 2px solid rgba(50, 50, 50, 0.5);
    border-radius: 5px;
    font-size: 16px;
    padding: 2 50 2 50px;
    font-weight: bold;
}

.btn-add-edit {
    font-size: 16px;
    border-radius: 5px;
}

/* ------------------------------ */

/* Loader */

/* .loader-fullscreen {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    background-color: rgba(75, 75, 75, 0.5);
    overflow: scroll;
}

.loader-fullscreen .page-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    z-index: 999999;
    background-color: rgba(75, 75, 75, 0.75);
    border-radius: 10px;
}

.loader-fullscreen .loader-spinner {
    width: 50px;
    height: 50px;
    border: 2px solid #FC6620;
    border-radius: 50%;
    border-top: 2px solid #fff;
    animation: spin 1s linear infinite;
    margin: 0;
    z-index: 999999;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.loader-fullscreen .loader-message {
    margin-left: 10px;
    font-size: 24px;
    color: #FC6620;
    z-index: 999999;
} */


#page-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    z-index: 999999;
    background-color: rgba(75, 75, 75, 0.75);
    border-radius: 10px;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 2px solid #FC6620;
    border-radius: 50%;
    border-top: 2px solid #fff;
    animation: spin 1s linear infinite;
    margin: 0;
    z-index: 999999;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.loader-message {
    margin-left: 10px;
    font-size: 24px;
    color: #FC6620;
    z-index: 999999;
}


/* --------- Home Page ---------- */
.home-new {
    margin: 25px 25px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    min-width: 400px;
    max-width: 1280px;
}

.home-new .entry {
    height: auto;
    width: 250px;
}

.entry-img {
    box-shadow: 0 0 10px #999;
    border-radius: 5px;
    width: 246px;
    height: 246px;
    margin: 0px;
    padding: 0px;
    align-items: flex-end;
    background-color: #FFFFFF;
}

.home-new .entry h3 {
    font-weight: lighter;
    text-align: center;
    color:rgb(100, 100, 100);
    margin: 0px;
    padding: 10px 0px 10px 0px;
    border-top: 3px solid rgba(100, 100, 100, 0.5);
}

.home-new .entry a {
    text-decoration: none;
}

/* New Device Button (Homepage) */
/* Button styling */
.new-device {
    background: linear-gradient(135deg, #FF6F00 0%, #FFA726 100%); /* Gradient orange background */
    border: none; /* Remove borders */
    color: white; /* White text */
    padding: 15px 32px; /* Some padding */
    text-align: center; /* Center the text */
    text-decoration: none; /* Remove underline */
    display: inline-block; /* Get the element to behave like a button */
    font-size: 16px; /* Increase font size */
    font-weight: bold; /* Bold font */
    margin: 4px 2px; /* Add some margin */
    cursor: pointer; /* Add a pointer cursor on hover */
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s; /* Add transition for hover effects */
}

/* Add a darker background and shadow on hover */
.new-device:hover {
    background: linear-gradient(135deg, #FF8F00 0%, #FFC107 100%); /* Darker gradient on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Slightly larger shadow */
}

/* Add a darker background and shadow on active (pressed) state */
.new-device:active {
    background: linear-gradient(135deg, #FF6F00 0%, #FF8F00 100%); /* Even darker gradient on active */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Smaller shadow */
    transform: translateY(2px); /* Add a slight downward movement */
}

/* Add focus styles */
.new-device:focus {
    outline: none; /* Remove default outline */
    box-shadow: 0 0 0 3px rgba(255, 87, 51, 0.6); /* Add custom focus outline */
}

/* ------------------------------ */

/* --------- Top Navbar --------- */

.top-nav {
    background-color: #323232;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.home-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    max-width: 1200px;
    margin: auto;
}

.home-nav .menu-item.link h3, 
.home-nav .menu-item.non-link h3 {
    font-size: 16px;
    font-weight: lighter;
    color: #CCC;
    padding-top: 15px; /* was padding */
    height: 45px; /* added */
    margin: 0px;
    text-align: center;
}

.home-nav .menu-item.link.name h3 {
    font-size: 14px;
}

.home-nav .menu-item.non-link h3 {
    text-align: left;
}

.home-nav .menu-item.link {
    flex: 1;
}

.home-nav .menu-item.non-link {
    flex: 3;
    margin-left: 20px;
}

.home-nav .menu-item a {
    text-decoration: none;
}

.home-nav .menu-item.link h3:hover {
    color: #FFFFFF;
    font-size: 1.1em;
    padding-bottom: 0;
    padding-top: 14px;
}

.home-nav .menu-item.link:hover {
    background-color: #292929;
}

/* Data Dropdown */
/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Submenu styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu-content {
    display: none;
    position: absolute;
    left: 100%; /* Position the submenu to the right of the parent */
    top: 0;
    background-color: #f9f9f9;
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-submenu:hover .dropdown-submenu-content {
    display: block;
}

.dropdown-submenu-content a:hover {
    background-color: #ddd;
}

/* ------------------------------ */

/* -------- Side Navbar --------- */
.sidenav {
    height: 100%;
    width: 30px; /* 150px */
    position: fixed;
    z-index: 1;
    top: 47.27px;
    left: 0;
    background-color: #323232;
    overflow-x: hidden;
    border-top: 4px solid rgba(150, 150, 150, 0.5);
    transition: 0.5s;
    padding-top: 25px;
    padding-bottom: 100px;
}

#sidenav-content {
    display: none;
}

#toggle {
    width: 25px;
    position: fixed;;
    left: 55px;
    top: 150px;
}
  
/* The navigation menu links */
.sidenav a {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 15px;
    color: #999;
    display: block;
    transition: 0.3s;
}
  
/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
    color: #FFFFFF;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
}

.main .openbtn {
    position: fixed;
    top: 50px;
    left: 5px;
    border: 0;
    background: none;
}
  
/* Style page content */
.main {
    transition: margin-left 0.5s;
    padding: 20px;
    max-width: 100%;
    /* margin-left: 50px; */
}

#open-sidenav {
    width: 25px;
    height: auto;
}
  
/* On smaller screens, where height is less than 450px, change the style of the sidebar (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}

.sidenav_labels {
    color: #EEEEEE;
    font-size: 16px;
    padding-right: 15px;
    padding-left: 15px;
}

.a-sidenav {
    padding: 10px;
}

.a-sidenav.logout {
    font-size: 18px;
}

#toggle-button {
    margin: auto;
    margin-left: 5px;
    position: fixed;
    left: 5px;
    top: 18px;
}

.toggle-icon {
    width: 15px;
    height: auto;
    cursor: pointer;
}

/* ------------------------------ */

/* --- Add Data Table Styling --- */
#add-table-div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 25px;
}

#display_rev {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 25px;
}

.add-table {
    border-collapse: separate; /* collapse */
    border-spacing: 0;
    box-shadow: 0 0 20px rgba(150, 150, 150, 1);
    border: 1px solid #FC6620;
    border-radius: 10px;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}

.add-table th,
.add-table td {
    padding: 5px;
    /* border: 1px solid; */
    text-align: left;
}

.add-table .check-list {
    text-align: left;
}

.add-table .check-list.conc {
    text-align: center;
}

#additive-btn {
    border:2px solid rgb(100, 100, 100);
    border-radius: 5px;
}

td.additive-checkbox {
    text-align: left;
}

.add-additive {
    text-align: center;
}

.add-table .group-label {
    text-align: center;
    border-top: 3px solid rgba(0, 0, 0, 0.3);
}

.add-table .group-label.value {
    border: none;
}

.paste {
    color: #FFFFFF;
    background-color: #777;
    border: 2px solid rgba(50, 50, 50, 0.5);
    border-radius: 5px;
    font-size: 16px;
    padding: 2 50 2 50px;
    text-align: center;
    width: 100px;
    margin: auto;
}

/* ------------------------------ */

/* -------- Laser Tables -------- */
.laser-main {
    max-width: 1280px;
    min-width: 500px;
    margin: auto;
}

.laser-table input {
    width: 50%;
}

.laser-table td {
    text-align: center;
}

.laser-table .top-table {
    text-align: left;
}

.laser-table {
    margin-top: 25px;
    margin-bottom: 25px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(150, 150, 150, 1);
    padding: 5px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #FC6620;
}

.laser-btn input {
    color: #FFFFFF;
    background-color: #FC6620;
    border: 2px solid rgba(50, 50, 50, 0.5);
    border-radius: 5px;
    font-size: 16px;
    padding: 2 50 2 50px;
}

.laser-btn {
    text-align: center;
}

/* ------------------------------ */

/* ----- Data table styling ----- */
.data-table {
    border-collapse: separate; /* collapse */
    border-spacing: 0;
    margin: 0px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}

.data-table thead tr {
    background-color: #777; /* FC6620 */
    color: #ffffff;
    text-align: left;
}

.data-table th {
    color: #FFFFFF;
    z-index: 99;
    padding: 5px;
    font-size: 10px;
}

.data-table td {
    padding: 2px;
    font-size: 12px;
}

.data-table th,
.data-table td {
    text-align: center;
    min-width: 82px;
}

.data-table tr:nth-of-type(even) td {
    background-color: #EEE /* FFEADF DDD */
}

.data-table tr:nth-of-type(odd) td {
    background-color: #FFFFFF;
}

.data-table tbody tr:hover td {
    background-color: #ffd3bf /* FFAE88 BBB */
}

.data-h3 {
    margin: 0;
    padding: 0;
    padding-top: 50px;
    font-weight: lighter;
}

.scrollable {
    max-height: 500px; /* 350px */
    overflow-y: scroll;
    border: 1px solid #424242; /* FC6620 */
    border-bottom: 3px solid #424242; /* FC6620 */
    width: fit-content;
    min-width: 100px;
    max-width: 100%;
    box-shadow: 0 0 20px rgba(150, 150, 150, 1); /* rgba(252, 102, 32, 0.6) */
    margin-left: auto;
    margin-right: auto;
    overflow-x: auto;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 0;
}

.scrollable-th {
    position: sticky;
    top: 0;
    background-color: #777; /* FC6620 */
    color: #ffffff;
    text-align: left;
    z-index: 10; /* Ensure the header rows are above other content (added) */
}

/* ADDED */
.scrollable-th.subrow {
    top: 22px; /* Adjust based on the height of the first row */
}

/* ADDED */
.scrollable-th.mainrow {
    top: 0;
}

.scrollable-th sub,
.scrollable-th sup {
    color: #ffffff;
}

.scrollable .data-table .last-row td {
    background-color: #AAA; /* ffddca */
    position: sticky;
    bottom: 0;
    /* height: 38.64px; */
    height: 30px;
    z-index: 99;
}

.last-row td {
    text-align: left;
}

.last-row td a {
    color: #666666;
    font-weight: bold;
    position: sticky;
    left: 10px;
    text-decoration: none;
    padding: 2px;
    border: 2px solid rgba(252, 102, 32, 0.6); /* 666666 */
    border-radius: 5px;
    background-color: #EEEEEE;
}

/* .scrollable .data-table .last-row td a.download {
    border: 2px solid rgba(43, 43, 255, 0.766);
    position: sticky;
    left: 150px;
} */

.scrollable .data-table .last-row .download {
    border: 2px solid rgba(43, 43, 255, 0.766);
    position: sticky;
    left: 110px;
    margin-left: 25px;
}

/* Title Column */
.hfix0,
.rfix0 {
    position: sticky;
    left: 0;
    z-index: 9;
    border-right: 2px solid rgba(100, 100, 100, 0.5);
}

.scrollable-th.hfix0 {
    z-index: 999;
}

/* Edit Column */
.hfix1,
.rfix1 {
    width: 20px;
    position: sticky;
    z-index: 9;
    border-left: 2px solid rgba(100, 100, 100, 0.5);
    padding: 0;
}

/* Delete Column */
.hfix2,
.rfix2 {
    width: 20px;
    position: sticky;
    right: 0;
    z-index: 9;
    padding: 0;
}

/* Add Column */
.hfix3,
.rfix3 {
    width: 20px;
    position: sticky;
    z-index: 9;
    border-left: 2px solid rgba(100, 100, 100, 0.5);
    padding: 0;
}

.data-table .scrollable-th.hfix1,
.data-table .scrollable-th.hfix2,
.data-table .scrollable-th.hfix3,
.data-table .rfix1,
.data-table .rfix2,
.data-table .rfix3 {
    min-width: 20px;
    padding: 2px 10px 2px 10px;
}

/* Group Title */
.data-table .group-title {
    border-bottom: 2px solid rgba(100, 100, 100, 0.5);
    border-right: 2px solid rgba(100, 100, 100, 0.5);
    border-left: 2px solid rgba(100, 100, 100, 0.5);
    background-color: #999;
}

.edit-icon,
.delete-icon,
.add-icon {
    width: 15px;
    height: auto;
}

.last-row .a_table {
    padding-left: 20px;
    padding-right: 20px;
}

/* td.additive-td {
    width: 250px;
} */

.load-more {
    border: 2px solid rgba(43, 43, 255, 0.913);
    width: 90px;
    margin: auto;
    margin-top: 10px;
    color: #666666;
    font-weight: bold;
    font-size: 14px;
    border-radius: 5px;
    background-color: #EEEEEE;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

/* ------------------------------ */

/* -------- Delete Page --------- */
.form-delete p {
    font-size: 20px;
}

.form-delete span {
    font-weight: bold;
    color: red;
}

.delete-page {
    width: 750px;
    margin: auto;
}

/* ------------------------------ */

/* --------- Dashboard ---------- */

.dash-parent {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    /* align-content: flex-start; */
    gap: 25px;
    margin-bottom: 25px;
}

.dash-child {
    /* border: 1px solid #FC6620; */
    border-radius: 5px;
	box-shadow: 0px 0px 10px #444;
}

.dash-hr {
    width: 90%;
    height: 1px;
    border: 2px solid #FC6620;
    box-shadow: 0 0px 10px #FC6620;
    margin: 10px auto 25px auto;
}

#dashboard-description {
    display: flex;
    justify-content: center;
    flex-flow: column wrap;
    margin: 25px;
}

/* ------------------------------ */

/* ------ Performance View ------- */

.perf-parent {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.iv-description {
    width: 122px;
}

.iv-curve {
    box-shadow: 0 0 5px rgba(150, 150, 150, 1);
    border-radius: 10px;
}

.perf-chart {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    margin-bottom: 25px;
    gap: 10px;
}

.view_perf_label {
    width: 80px;
}

.edit_perf {
    position: sticky;
    color: #666666;
    font-weight: bold;
    text-decoration: none;
    padding: 2px;
    border: 2px solid rgba(252, 102, 32, 0.6); /* 666666 */
    border-radius: 5px;
    background-color: #EEEEEE;
    width: 75px;
    text-align: center;
}

.edit_perf.download-perf {
    /* flex-basis: 65%; */
    width: 100px;
}

.perf-parent-2 {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 5px;
}

.add-perf {
    color: #666666;
    font-weight: bold;
    padding: 2px;
    border: 2px solid rgba(252, 102, 32, 0.6); /* 666666 */
    border-radius: 5px;
    background-color: #EEEEEE;
    text-align: center;
    margin: 0 auto 25px auto;
    width: 155px;
}

.add-perf a {
    text-decoration: none;
}

/* ------------------------------ */

/* ---------- Sign In ----------- */

/* For two_factor_auth */
.container {
    background-color: #EEEEEE;
    width: 1080px;
    padding: 50px;
}

/* For my log in page */
/* .container {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 85vh;
} */

.screen {		
	background: linear-gradient(90deg, #f8975e, #fd9362);		
	position: relative;	
	height: 600px;
	width: 360px;	
	box-shadow: 0px 0px 24px #FC6620;
    border-radius: 10px;
}

.screen__content {
	z-index: 1;
	position: relative;	
	height: 100%;
}

.screen__background {		
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);	
}

.screen__background__shape {
	transform: rotate(45deg);
	position: absolute;
    border-radius: 10px;
}

.screen__background__shape1 {
	height: 520px;
	width: 520px;
	background: #FFF;	
	top: -50px;
	right: 120px;	
	border-radius: 0 72px 0 0;
}

.screen__background__shape2 {
	height: 220px;
	width: 220px;
	background: #FC6620;	
	top: -172px;
	right: 0;	
	border-radius: 32px;
}

.screen__background__shape3 {
	height: 540px;
	width: 190px;
	background: linear-gradient(270deg, #fc7739, #FC6620);
	top: -24px;
	right: 0;	
	border-radius: 32px;
}

.screen__background__shape4 {
	height: 400px;
	width: 200px;
	background: #FC6620;	
	top: 420px;
	right: 50px;	
	border-radius: 60px;
}

.login {
	width: 320px;
	padding: 30px;
	padding-top: 156px;
}

.login__field {
	padding: 20px 0px;	
	position: relative;	
}

.login__icon {
	position: absolute;
	top: 30px;
	color: #FC6620;
}

.login__input {
	border: none;
	border-bottom: 2px solid #D1D1D4;
	background: none;
	padding: 10px;
	padding-left: 24px;
	font-weight: 700;
	width: 75%;
	transition: .2s;
}

.login__input:active,
.login__input:focus,
.login__input:hover {
	outline: none;
	border-bottom-color: #FC6620;
}

.login__submit {
	background: #fff;
	font-size: 14px;
	margin-top: 30px;
	padding: 16px 20px;
	border-radius: 26px;
	border: 1px solid #f9d6c6;
	text-transform: uppercase;
	font-weight: 700;
	display: flex;
	align-items: center;
	width: 100%;
	color: #f69162;
	box-shadow: 0px 2px 2px #FC6620;
	cursor: pointer;
	transition: .2s;
}

.login__submit:active,
.login__submit:focus,
.login__submit:hover {
	border-color: #FC6620;
	outline: none;
}

.button__icon {
	font-size: 24px;
	margin-left: auto;
	color: #7875B5;
}

.signin-alert {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 16px;
    background-color: #f69162;
    width: 400px;
    margin: auto;
    padding: 10px;
}

/* ------------------------------ */

/* --------- Error Page --------- */

.error-page {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 16px;
    background-color: #444;
    width: 400px;
    margin: auto;
    padding: 10px;
}

/* ------------------------------ */

.error-message {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 16px;
    background-color: #555;
    width: 400px;
    margin: auto;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.parse-div {
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* ------------------------------ */
/* Custom */
  
#custom {
    padding: 20px;
    max-width: 100%;
    margin: 10px;
}

/* ------------------------------ */
/* IV Plots */
  
.iv-div {
    margin: auto;
    width: 300px;
    margin-bottom: 10px;
}

/* ------------------------------ */

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
}

/* ------------------------------ */
/* Machine Learning */
.metadata-title {
    font-weight: bold;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.metadata-container {
    display: flex;
    justify-content: center;
}

.metadata-label {
    font-size: small;
    font-weight: bold;
    color: #777;
}

.metadata-content {
    font-size: small;
    font-weight: bold;
    color: #000;
}

/* ------------------------------ */