#layout-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.widget {
  flex: 1 1 300px;
  min-width: 280px;
}
.player-container {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
/* ====== Vanuit index.php (was in <style>) ====== */

body {
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

a {
  color: #4eaaff;
}

.title {
  text-align: center;
  margin-bottom: 10px;
}

select, input, button {
  background: #222;
  color: #fff;
  padding: 10px;
  border: 1px solid #444;
}

button:hover {
  background: #333;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  width: 100%;
  align-items: center;
}

.audio-player {
  width: 100%;
  max-width: 600px;
  margin-bottom: 10px;
}

#chatbox {
  background: #111;
  height: 300px;
  overflow-y: auto;
  border: 1px solid #444;
  padding: 10px;
  margin-top: 20px;
}

#chatbox img {
  max-width: 100%;
  max-height: 200px;
  border-radius: 5px;
  margin: 5px 0;
  cursor: pointer;
}

.row {
  display: flex;
  gap: 10px;
  margin: 10px 0;
  flex-wrap: wrap;
}

.admin {
  text-align: center;
  margin-top: 20px;
}

.logo {
  max-width: 200px;
  max-height: 200px;
  margin-bottom: 10px;
}

.media-header {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.mini-video {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
.logo {
  max-width: 200px;
  max-height: 200px;
  margin-bottom: 10px;
  border-radius: 20px; /* Of bijvoorbeeld 50% voor een perfect rond logo */
}
