
/* consent.css */
#cc-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ccc;
  border-top: 1px solid #ccc;
  padding: 1rem;
  box-shadow: 0 -2px 6px #444;
  font-family: sans-serif;
  font-size: 14px;
  z-index: 1000;
}

.cc-text {
  margin-bottom: 0.5rem;
  color: rgb(0, 0, 0);
}

.cc-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cc-btn {
  padding: 0.4rem 0.8rem;
  border: 1px solid #444;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}

.cc-btn-primary {
  background: #007bff;
  color: rgba(0,0,0,0.6);
  border-color: #007bff;
}

#cc-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.cc-card {
  background: rgb(0, 0, 0);
  padding: 1.5rem;
  max-width: 500px;
  width: 100%;
  border-radius: 8px;
}

.cc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.5rem 0;
}

.cc-footer {
  margin-top: 1rem;
  text-align: right;
}

.cc-manage {
  display: block;
  margin: 1rem auto;
  background: none;
  border: none;
  color: #555;
  font-size: 0.9rem;
  text-decoration: underline;
  cursor: pointer;
}

.cc-manage:hover {
  color: #f00;
}
