* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	font-family: 'poppins', sans-serif;
}

body {
	height: 100vh;
	display: flex; 
	 align-items: center;
	font-size: 12;
}


.container {
	padding: 30px;
	border: 1px solid #eeeeee;
	border-radius: 10px;
	color: white;
   	background-color: var(--background1);
}

/* .msgcontainer {	
   	background-color: var(--background1);
	padding-bottom: 8px;
} */

.container ul{
	margin-left: 2em;	
	color: white;
}

.container ul li{
	margin-bottom: 2px;
}

h2 {
	margin-bottom: 10px;
	font-size: 20px;
}

h3 {
	margin-bottom: 10px;
	font-size: 18px;
	color:#f4a261;
}

p {
	margin-bottom: 10px;	
}

/* Buttons */
.submit {
	border: none;
	background-color: var(--submit-background);
	color: var(--submit-color);
	width: 200px;
	margin-top: 10px;
	border-radius: 15px;
}

.export{
	border: none;
	background-color: rgba(107, 131, 228, 0.832);
	color: white;
	width:110px;
	height: 25px;
	border-radius: 15px;
	float: right;
	margin:0px;
}

.update{
	border: none;
	background-color: var(--submit-background);
	color: var(--submit-color);
	width:150px;
	height: 25px;
	border-radius: 15px;
	float: left;
	margin:0px;
}

.submit:hover,
.export:hover,
.update:hover {
	background-color: var(--submit-hover);
}

/* Form input */

#myForm {
	background-color: var(--background2);
	color: black;
}

#liste {
	background-color: var(--background2);
	color:#ccc
}

input[required] {
	background-image: radial-gradient(#F00 15%, transparent 16%), radial-gradient(#F00 15%, transparent 16%);
	background-size: 1em 1em;
	background-position: right top;
	background-repeat: no-repeat;
}

.date-select {
	margin-top: 8px;
	padding-bottom: 12px;
	background: var(--background1);
	color: white;
}

input {
	width: 100%;
	padding: 10px; 
	margin-bottom: 10px;
	color: black;
}

textarea {
	width: 100%;
	padding: 10px;
} 

/* Tabs */
.tab {
	overflow: hidden;
	border: 1px solid #ccc;
}

/* Style the tab buttons */
.tab button {
	background-color: #f1f1f1; 
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
	background-color: #d1d1d1;
}

/* Create an active/current tablink class */
.tab button.active {
	background-color: #c0bfbf;
}

/* Style the tab content */
.tabcontent {
	display: none;
	padding: 6px 12px;
	border: 1px solid #ccc;
	border-top: none;
	animation: fadeEffect 1.5s;
}

.waiting {
	cursor: wait;
}


/* ------------------
   Msg and Progress -
   ------------------ */
#msg {
	display: block;
	margin-top: 8px;
	padding: 10px;
	color: #ffffff;
	background-color: orangered;
}

.progress{
    position: relative;
    height: 20px;
    border: 10px solid #f4a261;
    border-radius: 15px;
}

.progress .color{
    position: absolute;
    background-color: #ffffff;
    width: 0px;
    height: 6px;
	top:-2px;
    border-radius: 15px;
    animation: progres 4s infinite linear;    
} 

@keyframes progres{
    0%{
      width: 0%;
    }
    25%{
        width: 50%;
    }
    50%{
        width: 75%;
    }
    75%{
        width: 85%;
    }
    100%{
        width: 100%;
    }
}


/* Go from zero to full opacity */
 @keyframes fadeEffect {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
} 

/* --------
    tabel -
-- -------- */
table  {
	border-collapse: collapse;
	width: 100%;
	color: #333; 
	font-family: Arial, sans-serif;
	font-size: 14px;
	text-align: left;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	margin: auto;
	overflow:scroll;
  } 
  
  table   th {
	font-size: 18px;
	color: #FFFFFF;
	font-weight: bold;
	padding: 10px;
	padding-top: 10px;
	border-bottom: 1px solid #ccc;
  }
  
  table   tr:nth-child(even) td {
	background-color: var(--palette4);
  }
  
  table  tr:hover td {
	background-color: #ffedcc;
  }
  
  table   td {
	background-color: var(--palette5);
	padding: 10px;
	margin: 0;
	border-bottom: 1px solid #ccc;
	color: #000000;
  }