/* Grundläggande reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#video-bot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: sans-serif;
}

#video-bot-minimized {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
#video-bot-minimized video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#video-bot-expanded {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 320px;
  max-width: 90vw;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#video-bot-expanded.hidden {
  display: none;
}

.video-wrapper video {
  width: 100%;
  border-radius: 12px;
}

.video-buttons {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.video-buttons a {
  text-align: center;
  padding: 10px;
  background-color: #1e40af;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.2s;
}
.video-buttons a:hover {
  background-color: #1d4ed8;
}

#video-bot-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
