.rodo-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.rodo-popup-container {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 1200px;
  width: 90%;
  max-height: 90dvh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.rodo-popup-content {
  padding: 0 30px 0 30px;
}

.rodo-popup-content h2 {
  margin: 0 0 20px 0;
  position: sticky;
  top: 0;
  background-color: #fff;
  padding: 30px 0;
  font-size: 24px;
  color: #333;
  font-weight: 600;
  border-bottom: 2px solid #96c11f;
  padding-bottom: 10px;
}

.rodo-popup-text {
  margin-bottom: 25px;
  color: #555;
  line-height: 1.6;
  font-size: 16px;
}

.rodo-popup-text p {
  margin: 0 0 15px 0;
}

.rodo-popup-text ul {
  margin: 15px 0;
  padding-left: 25px;
}

.rodo-popup-text li {
  margin-bottom: 10px;
}

.rodo-popup-text a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.rodo-popup-text a:hover {
  text-decoration: underline;
}

.rodo-popup-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 20px 0;
}

.rodo-button {
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
}

.rodo-accept {
  background-color: #96c11f;
  color: white;
}

.rodo-accept:hover {
  background-color: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

.rodo-reject {
  background-color: #6c757d;
  color: white;
}

.rodo-reject:hover {
  background-color: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
}

.rodo-button:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .rodo-popup-container {
    width: 95%;
    max-height: 95vh;
  }

  .rodo-popup-content {
    padding: 0 20px 0px 20px;
  }

  .rodo-popup-content h2 {
    font-size: 20px;
    padding: 20px 0;
  }

  .rodo-popup-text {
    font-size: 15px;
  }

  .rodo-popup-buttons {
    flex-direction: column;
  }

  .rodo-button {
    width: 100%;
  }
}

.rodo-popup-container::-webkit-scrollbar {
  width: 8px;
}

.rodo-popup-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.rodo-popup-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.rodo-popup-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}
