/* Cookie Banner Styles */
.cb-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 9999;
  border-top: 1px solid #ddd;
  display: none;
}

.cb-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.cb-text {
  margin: 0;
  flex: 1;
  min-width: 250px;
  color: #333;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cb-link {
  color: #f5680a;
  text-decoration: underline;
}

.cb-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Cookie Settings Modal */
.cb-settings {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  max-width: 500px;
  width: 90%;
  z-index: 10000;
  display: none;
}

.cb-settings-title {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #333;
  font-size: 1.2rem;
}

.cb-category {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.cb-category:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cb-label {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.cb-checkbox {
  margin-right: 10px;
}

.cb-category-name {
  font-weight: 500;
  color: #333;
}

.cb-category-desc {
  opacity: 0.7;
  font-size: 0.85em;
  color: #666;
}

.cb-settings-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

/* Cookie Button Styles */
.cb-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
}

.cb-btn-primary {
  background-color: #ee7b46;
  color: white;
}

.cb-btn-primary:hover {
  background-color: #5dcfdf;
}

.cb-btn-secondary {
  background-color: transparent;
  color: #666;
  border: 1px solid #ddd;
}

.cb-btn-secondary:hover {
  background-color: #f5f5f5;
}

.cb-btn-link {
  background: none;
  color: #ff481a;
  text-decoration: underline;
  padding: 0;
}

.cb-btn-link:hover {
  text-decoration: none;
}

/* Form Styles */
.cb-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .cb-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cb-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cb-settings {
    bottom: 20px;
    transform: translateX(-50%) translateY(-20px);
  }
}

@media (max-width: 480px) {
  .cb-banner {
    padding: 15px;
  }
  
  .cb-buttons {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  
  .cb-buttons .cb-btn {
    width: 100%;
  }
  
  .cb-settings-buttons {
    flex-direction: column;
  }
  
  .cb-settings-buttons .cb-btn {
    width: 100%;
  }
}