.topnavbar {
    margin-top: 10px;
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    border: #fba1b7 solid 3px;
    background-color: white;
    /* background-color: #ffeef4; */
    justify-content: center;
    display: flex;
}

.topnavbar:hover {
    background-color: white;
    /* background-color: #ffeef4; */
    margin-top: 10px;
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 12px 16px 0 rgba(255, 92, 147, 0.24),
        0 5px 4px 0 rgba(255, 92, 147, 0.19);
    transition: 0.3s;
}

.topnavbar a {
    color: #ff8fab;
    font-size: 20px;
    text-decoration: none;
}

.topnavbar a:hover {
    color: #ff8fab;
    font-size: 20px;
    /* text-decoration: none; */
    border-bottom: #ff8fab solid 4px;
}

.topnavbar a.active {
    border-bottom: #ff8fab solid 4px;
}

h2 {
    color: #ff8fab;
}

.chat-heading {
    background-color: #fff5f7;
    font-weight: bold;
    font-size: 20px;
    padding: 10px 16px;
    border-radius: 20px;
    display: inline-block;
    text-align: center;
}

footer {
    width: 100%;
    height: 100%;
}


/* .chat-btn {
  background-color: #fba1b7;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 20px;
  cursor: pointer;
}

.chat-popup {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: #ffeef4;
  border: 2px solid #fba1b7;
  border-radius: 20px;
  width: 250px;
  box-shadow: 0 0 15px #fba1b7;
  z-index: 999;
  animation: fadeIn 0.3s ease-in-out;
}

.chat-header {
  background-color: #fba1b7;
  color: white;
  padding: 10px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  font-weight: bold;
  text-align: center;
}

.chat-body {
  padding: 10px;
  font-size: 14px;
  color: #444;
}

.close-chat {
  background-color: #fba1b7;
  color: white;
  border: none;
  padding: 6px 10px;
  margin: 10px;
  border-radius: 15px;
  cursor: pointer;
  float: right;
} */

/* @keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
} */