* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/* ========= Startpagina =========*/
.wrapper {
    margin: 0 auto;
    width: 968px;
    text-align: center;
}

.dashboard {
  display: flex;
  flex-direction: column;
  align-items: center;

  border: 1px solid #423174;
  background-color: #423174;
  border-radius: 10px;

  width: 450px;
  margin: 0 auto;
  margin-top: 250px;
}

.startText, .startBox {
  text-align: center;
  text-decoration: none;
  color: #ff7a08;
}

.startText {
  margin-top: 20px;
  margin-bottom: 20px;
}

.startBox {
  border: 1px solid #ff7a08;
  background-color: #ff7a08;
  border-radius: 10px;

  padding: 25px 75px;
  color: #423174;

  margin-bottom: 40px;
  font-size: 25px;
}


/* ========= Dashboard filtering =========*/
header {
  background-color: #423174;
  color: #ff7a08;
  text-align: center;
  padding: 15px;
  margin-bottom: 20px;

  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.filterPositioning, .sorterPositioning {
  display: flex;
  flex-flow: row nowrap;
}

#filterSection {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-flow: row nowrap;
  margin-bottom: 30px;
  gap: 25px;
}

select {
  font-size: 15px;
  padding: 5px;
  margin: 0px 5px;

  box-sizing: border-box;
  border-radius: 5px;
  width: 140px;
}

h2, p {
  margin: 0px 5px;
}

#countryFilter {
  width: 180px;
}

#sorter, #order {
  margin-top: 20px;
}

button {
  border: 1px solid #ff7a08;
  background-color: #ff7a08;
  border-radius: 5px;

  color: #423174;
  cursor: pointer;
  padding: 7px 25px;
  font-size: 15px;
  font-weight: 600;
}


/* ========= Dashboard =========*/

.address {
  padding: 5px 10px;
}

.tableContent {
  text-align: center;
  
  td:first-letter {
  text-transform: capitalize;
  }
}

.capital {
  text-transform: capitalize;
}

table {
  margin: 0 auto;
  margin-bottom: 50px;
}


/* ========= Dashboard kleuren =========*/
th {
  background-color: #f8a155;
  font-weight: 600;
  padding: 10px 0px;
}

tr:nth-child(odd) {
  background-color:#f1c8a4;
}

tr:nth-child(even) {
  background-color:#ffe7d2;
}

tr:first-child {
  background-color:#f1c8a4;
}

tr:hover {
  background-color:#d19a6a;
}