body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  margin: 0;
  padding: 0;
}

.topnav {
  overflow: hidden;
  background-color: #333;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topnav .left {
  display: flex;
}

.topnav .right {
  display: flex;
  align-items: center;
}

.topnav a {
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.topnav a:hover, .topnav a.active {
  background-color: #ddd;
  color: black;
}

.logout-btn {
  background-color: #f44336;
}

.logout-btn:hover {
  background-color: #e53935;
}

.avatar {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.container {
  margin-top: 70px; /* Houd rekening met de vaste navigatiebalk */
  width: 80%;
  margin: 50px auto;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  position: relative; /* Zodat de absolute positionering van het logo werkt */
}

.actions {
  text-align: right;
  margin-bottom: 20px;
}

.button {
  background-color: #007BFF;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
  cursor: pointer;
}

.button:hover {
  background-color: #0056b3;
}

.login-form {
  width: 300px;
  margin: 100px auto;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
}

.login-form h2 {
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 15px;
  text-align: left;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
}

.input-group input, .input-group select, .input-group textarea, .input-group button {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

.input-group button {
  background-color: #007BFF;
  color: #fff;
  border: none;
  cursor: pointer;
}

.input-group button:hover {
  background-color: #0056b3;
}

.filter-form {
  margin: 20px 0;
  display: flex;
  align-items: center;
}

.filter-form label {
  margin-right: 10px;
}

.filter-form select {
  margin-right: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

table, th, td {
  border: 1px solid #ddd;
}

th, td {
  padding: 10px 15px; /* Voeg wat ruimte toe rond de tekst */
  text-align: left;
}

th {
  background-color: #f2f2f2;
}

.welcome-message {
  text-align: center;
  margin-top: 50px;
}

.welcome-message img {
  max-width: 100px;
  margin-bottom: 20px;
}

.welcome-message h1 {
  margin-bottom: 10px;
}

.static-field {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.static-field label {
  width: 150px;
  margin-right: 10px;
}

.static-field span {
  flex: 1;
  color: #555;
}

.client-logo {
  width: 150px;
  height: auto;
  max-width: 150px;
  max-height: 150px;
  margin: 0 auto;
}

.admin-name {
  color: white;
  margin-right: 10px;
}

.right {
  display: flex;
  align-items: center;
}

.default-logo {
  display: block;
  margin: 0 auto;
  width: 150px;
  height: auto;
}

.login-form {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .container-mt-5 {
    display: none;
  }
  .login-form {
    margin-top: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .login-form .form-group label {
    display: block;
    text-align: left;
  }
  .login-form .form-control {
    width: 100%;
  }
  .login-form .default-logo {
    margin-bottom: 20px;
  }
}

.iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh; /* Vul de volledige hoogte van het scherm */
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
