:root {
  /* --primary: #3498db; */
  --primary: #0065F8;
  --link: #f04444;
  --background: #fff;
  --color: #000;
  /* add 20 to the end of the primary color to make it transparent */
  --hover: #0065F820;
}

/* Auto Dark Mode */
/* Comment if you don't want */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: var(--background);
  color: var(--color);
  margin: 0;
}

.video-call,
.chat {
  background-color: var(--primary);
  color: white;
}


a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.heading {
  color: var(--primary);
}


.hover {
  transition: 0.3s;
  border: 1px solid transparent;
}

.hover p {
  color: var(--primary);
}

.hover:hover {
  background-color: var(--hover);
  border: 1px solid var(--primary);
}

.hover:hover p {
  color: var(--color);
}

.active {
  background-color: var(--hover);
  border: 1px solid var(--primary);
}

button {
  cursor: pointer;
  color: var(--color);
  background-color: var(--primary);
}

button.hover {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3);
  border: 1px solid var(--hover);
}

.animate-popin {
  animation: popinMessage 0.4s ease-out forwards;
  opacity: 0;
  transform: scale(0.1) translateY(200px);
  transform-origin: bottom center;
}

.delay-0 {
  animation-delay: 0s;
}

.delay-1 {
  animation-delay: 1s;
}

.delay-2 {
  animation-delay: 2s;
}

.delay-3 {
  animation-delay: 3s;
}



@keyframes popinMessage {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Custom Alert Modal Styles */
.custom-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-out;
}

.custom-alert-modal {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 90%;
  animation: slideUp 0.3s ease-out;
}

.custom-alert-content {
  padding: 24px;
  text-align: center;
}

.custom-alert-message {
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 500;
}

.custom-alert-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 101, 248, 0.3);
}

.custom-alert-btn:hover {
  background-color: #0052cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 101, 248, 0.4);
}

.custom-alert-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 101, 248, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}