html {
	scroll-behavior: smooth;
}

body {
	font-family: helvetica;
	margin: 0;
}

.wrapper {
  	background-color: #ffffff;
  	margin-top: 50px;
 	margin-bottom: 50px;
  	margin-left: auto;
	margin-right: auto;

  	max-width: 960px;

  	padding-right: 50px;
  	padding-left: 50px;
  	padding-top: 50px;
  	padding-bottom: 50px;
}

pre {
	border-radius: 10px;
}

pre:hover {
	resize: both;
}

/* || Main Navigation */

.logo {
	float: left;
  	padding-left: 20px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-top: 20px;
	width: 210px;
	height: auto;
}

.topnav {
  	overflow: hidden;
  	background-color: white;
	top: 0;
  	left: 0;
	margin: 0;
  	padding: 0;
	z-index: 1000;
  	width: 100%; !important;
	position: fixed;
	-webkit-box-shadow: 0px 0px 9px 3px rgba(41,41,41,.25);
  	-moz-box-shadow: 0px 0px 9px 3px rgba(41,41,41,.25);
  	box-shadow: 0px 0px 9px 3px rgba(41,41,41,.25);
}

.topnav a {
  	float: left;
  	display: block;
  	color: grey;
  	text-align: center;
  	padding-top: 40px;
	padding-bottom: 0px;
	padding-left: 16px;
	padding-right: 16px;
  	text-decoration: none;
  	font-size: 18px;
	transition: color 0.3s ease-out;
}

.active, .nav-btn {
  	color: #1a1a1a;
}

@media (max-width: 800px) {
	#first {
		padding-top: 120px;
	}
	#last {
		padding-bottom: 30px;
	}
	.logo {
		width: 130px;
		height: auto;
	}
}
	

.topnav .icon {
  	display: none;
}

.dropdown {
  	float: left;
  	overflow: hidden;
}

.dropdown .dropbtn {
  	font-size: 17px;
  	border: none;
  	outline: none;
  	color: grey;
  	padding: 34px 16px;
  	background-color: inherit;
  	font-family: inherit;
  	margin: 0;
	transition: color 0.3s ease-out;
}

.dropdown-content {
  	display: none;
  	position: fixed;
  	background-color: #f9f9f9;
  	min-width: 160px;
  	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  	z-index: 1001;
}

.dropdown-content a {
  	float: none;
  	color: grey;
  	padding: 12px 16px;
  	text-decoration: none;
  	display: block;
  	text-align: left;
}

.topnav a:hover:not(.logo), .dropdown:hover .dropbtn {
  	color: #1a1a1a;
	transition: color 0.5s ease;
}

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

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

@media screen and (max-width: 800px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 800px) {
  .topnav.responsive {
	position: fixed;
  }
  .topnav.responsive .icon {
    position: fixed;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

/* || Table */

#customers {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

#customers td, #customers th {
  border: 1px solid #ddd;
  padding: 8px;
}

#customers tr:nth-child(even) {
	background-color: #f2f2f2;
	transition: background-color 0.2s ease-out;
}

#customers tr {
	background-color: white;
	transition: background-color 0.2s ease-out;
}

#customers tr:hover {
	background-color: #ddd;
	transition: background-color 0.5s ease;
}

#customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #4CAF50;
  color: white;
}
