/* Verbesserte App Banner Styles */
.app-banner {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 300px; /* Breiter für mehr Platz */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1000;
  overflow: hidden;
  transition: all 0.5s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* Initial-Zustand für Animation */
  opacity: 0;
  transform: translateY(20px);
}

.app-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.app-banner-content {
  display: flex;
  align-items: flex-start;
  padding: 8px 12px;
  position: relative;
}

.app-icon {
  flex: 0 0 28px; /* Größeres Icon */
  height: 28px; /* Größeres Icon */
  background: linear-gradient(135deg, #95c121, #78a00a);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.app-icon i {
  font-size: 16px; /* Deutlich größeres Apple-Icon */
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.app-info {
  flex: 1;
  padding-right: 16px;
}

.app-title {
  font-weight: 700;
  color: #333;
  margin: 0 0 6px;
  font-size: 10px;
  line-height: 1.2;
}

.app-description {
  font-size: 10px;
  color: #555;
  margin: 0 0 10px;
  line-height: 1.4;
}

/* Bewertungssystem */
.app-rating {
  display: flex;
  align-items: center;
  margin-top: 8px;
}

.stars {
  color: #ffc107;
  font-size: 12px;
  margin-right: 6px;
}

.rating-text {
  font-size: 12px;
  color: #666;
  font-weight: 600;
}

.app-download-btn {
  background: linear-gradient(to right, #95c121, #78a00a);
  color: white;
  padding: 5px 10px;
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 11px;
  box-shadow: 0 4px 10px rgba(149, 193, 33, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-left: 10px;
}

.app-download-btn i {
  margin-right: 6px;
}

.app-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(149, 193, 33, 0.4);
  background: linear-gradient(to right, #78a00a, #95c121);
}

.app-banner-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #999;
  opacity: 0.7;
  transition: all 0.2s ease;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  z-index: 10;
}

.app-banner-close:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .app-banner {
    width: calc(100% - 30px);
    bottom: 15px;
    right: 15px;
    max-width: 280px;
  }
  
  .app-banner-content {
    flex-wrap: wrap;
  }
  
  .app-download-btn {
    margin-top: 15px;
    margin-left: 88px; /* Ausrichten mit dem Text */
    padding: 5px 10px;
  }
}

@media (max-width: 480px) {
  .app-banner-content {
    padding: 8px 12px;
  }
  
  .app-icon {
    flex: 0 0 28px;
    height: 28px;
    margin-right: 14px;
  }
  
  .app-icon i {
    font-size: 16px;
  }
  
  .app-title {
    font-size: 13px;
  }
  
  .app-description {
    font-size: 10px;
  }
  
  .app-download-btn {
    margin-left: 36px;
    width: calc(100% - 36px);
  }
}

/* Styles for Practice Updates (Vacation/News) */
.update-card.highlight {
  background: linear-gradient(135deg, rgba(149, 193, 33, 0.1), rgba(149, 193, 33, 0.05));
  border-left: 4px solid #95c121;
}

.update-card.highlight .update-icon {
  background: #95c121;
  color: white;
}

.update-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(149, 193, 33, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.update-icon i {
  color: #95c121;
  font-size: 18px;
}

.update-card.highlight .update-icon i {
  color: white;
}
