:root {
  --bs-primary: #24255d; /* Primary color */
  --bs-secondary: #5f64ae; /* Secondary color */
  --bs-success: #f5af02; /* Success color */
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.form-control:focus {
  box-shadow: none;
}

/* Social sharing sidebar */
.social-share-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.social-share-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-share-sidebar a:hover {
  width: 50px;
}

.social-share-sidebar .facebook {
  background-color: #3b5998;
}

.social-share-sidebar .whatsapp {
  background-color: #25d366;
}

.social-share-sidebar .twitter {
  background-color: #1da1f2;
}

.social-share-sidebar .instagram {
  background-color: #c13584;
}

.social-share-sidebar .linkedin {
  background-color: #0077b5;
}

.social-share-sidebar .email {
  background-color: #757575;
}

@media (max-width: 576px) {
  .social-share-sidebar {
    display: none;
  }
}
