body {
  margin: 0;
  min-height: 90vh;
  background-color: #0a0b11;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.container {
  width: 500px;
  max-height: 500px;
  margin: 10px;
  border: 1px solid #fff;
  background-color: #ffffff;
  box-shadow: 0 2px 7px #292929;
  -moz-box-shadow: 0 2px 7px #292929;
  -webkit-box-shadow: 0 2px 7px #292929;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.mainbody,
.header,
.footer {
  padding: 5px;
}
.mainbody {
  margin-top: 0;
  min-height: 50px;
  max-height: 388px;
  overflow: auto;
}
.header {
  height: 40px;
  border-bottom: 1px solid #EEE;
  background-color: #ffffff;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.footer {
  height: 40px;
  background-color: whiteSmoke;
  border-top: 1px solid #DDD;
  -webkit-border-bottom-left-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  -moz-border-radius-bottomright: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.bottom-line {
  position: fixed;
  color: #cccccc;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: #000000; /* Adjust color as needed */
}

.top-line {
  position: fixed;
  color: #cccccc;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: #000000;
}
.parent-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  width: 100%;
}
.centered-div {
    background-color: transparent;
}

.custom-search {
  position: relative;
  width: 80%;
}
.custom-search-input {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 100px;
  padding: 10px 100px 10px 20px;
  line-height: 1;
  box-sizing: border-box;
  outline: none;
}

.default-social-icon {
  filter: grayscale(100%) brightness(85%) contrast(100%);
}
.default-social-icon:hover {
  filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.3));
  cursor: pointer;
}

.chat-button-float{
  position:fixed;
  width:60px;
  height:60px;
  bottom:40px;
  right:40px;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.bootstrap-like-button {
  display: inline-block; /* Allows setting width/height and vertical alignment */
  padding: 5px 10px; /* Adjust as needed for desired button size */
  font-size: 16px;
  font-weight: 400; /* Standard font weight */
  line-height: 1.5;
  color: #fff; /* White text color */
  background-color: #007bff; /* Primary blue color, adjust for other variants */
  border: 1px solid #007bff; /* Matching border color */
  border-radius: 5rem; /* Slightly rounded corners */
  cursor: pointer;
  text-align: center;
  text-decoration: none; /* Remove underline for links acting as buttons */
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; /* Smooth transitions for hover effects */
}

.bootstrap-like-button:hover {
  color: #fff;
  background-color: #0056b3; /* Darker blue on hover */
  border-color: #004085;
}

.bootstrap-like-button:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); /* Focus ring effect */
}

.bootstrap-like-button:active {
  background-color: #004085; /* Even darker blue when active/clicked */
  border-color: #002752;
}
