/* Base styles for all devices */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 1em;
}

nav {
    display: flex;
    justify-content: space-around;
    background-color: #333;
}

nav a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
}

nav a:hover {
    background-color: #ddd;
    color: black;
}
.button-5 {
  align-items: center;
  background-clip: padding-box;
  background-color: #fa6400;
  border: 1px solid transparent;
  border-radius: .25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  min-height: 3rem;
  padding: calc(.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
}

.button-5:hover,
.button-5:focus {
  background-color: #fb8332;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.button-5:hover {
  transform: translateY(-1px);
}

.button-5:active {
  background-color: #c85000;
  box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
  transform: translateY(0);
}
tr:nth-child(odd) {
	background-color: #EEE; /* Light gray for even rows */
}
/* Mobile styles */
@media (max-width: 600px) {
	body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
	
 }
   nav {
        flex-direction: column;
    }

    nav a {
        padding: 10px;
        border-top: 1px solid #444;
    }
}

/* Tablet styles */
@media (min-width: 601px) and (max-width: 768px) {
	p {
  font-size: 2vmax;
}
	
    nav {
        flex-direction: row;
    }

    nav a {
        padding: 12px;
    }
}

/* Desktop styles */
@media (min-width: 769px) {
    nav {
        flex-direction: row;
    }

    nav a {
        padding: 14px 20px;
    }
}