html, body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background: transparent !important;
  color: #eee;
  height: 100%;
  width: 100%;
}

a {
  color: #00bcd4;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0097a7;
}

.container,
.container-fluid,
.row,
.col,
.col-12 {
  background: transparent !important;
}

h1, h2, h3, h4, h5, h6 {
  color: #fff;
  margin: 0 0 10px 0;
}

p {
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.sendeplan-bereich {
  padding: 30px 0;
  background: transparent !important;
}

.sendeplan-tabs {
  margin-bottom: 25px;
  background: transparent !important;
}

.nav,
.nav-tabs,
.nav-tabs .nav-item,
.nav-tabs .nav-link,
.nav-tabs .nav-link.active,
.tab-content,
.tab-pane,
.tab-pane.show,
.tab-pane.active {
  background: transparent !important;
}

.sendeplan-tabs .nav-tabs {
  justify-content: center;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

.sendeplan-tabs .nav-item .nav-link {
  color: #fff;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 8px 8px 0 0;
  margin: 0 4px;
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.sendeplan-tabs .nav-item .nav-link.active {
  color: #00bcd4;
  transform: scale(1.05);
  border-color: #00bcd4;
}

.sendeplan-tab-inhalt {
  padding: 15px 10px;
  background: transparent !important;
}

.sendeplan-eintrag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(15px);
  animation: aufblenden 0.5s forwards;
}

.sendeplan-eintrag:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

@keyframes aufblenden {
  to { opacity: 1; transform: translateY(0); }
}

.sendeplan-avatar-info {
  display: flex;
  align-items: center;
  flex: 1;
}

.sendeplan-avatar-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #00bcd4;
  object-fit: cover;
  margin-right: 12px;
  transition: transform 0.3s ease;
}

.sendeplan-avatar-info img:hover {
  transform: scale(1.1);
}

.sendeplan-info h6 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

.sendeplan-info p {
  font-size: 13px;
  color: #aaa;
  margin-top: 3px;
}

.sendeplan-zeit {
  flex: 0 0 auto;
  text-align: right;
  font-size: 15px;
  font-weight: bold;
  color: #ff9800;
}

@media (max-width: 767px) {
  .sendeplan-eintrag {
    flex-direction: column;
    text-align: center;
    padding: 12px 10px;
  }

  .sendeplan-avatar-info,
  .sendeplan-zeit {
    flex: 0 0 100%;
    text-align: center;
    margin: 6px 0;
  }

  .sendeplan-tabs .nav-item .nav-link {
    font-size: 14px;
    padding: 8px 10px;
  }

  .sendeplan-info h6 {
    font-size: 16px;
  }

  .sendeplan-info p {
    font-size: 12px;
  }

  .sendeplan-zeit {
    font-size: 14px;
  }
}
