@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;

::-webkit-scrollbar {
    width: 4px;
  }
  ::-webkit-scrollbar-track {
    background-color: #CBD0DB;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #6F7B94;
  }

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
    overflow-y: hidden;
}

body {
    background: '#fff';
}

a {
    color: inherit;
    text-decoration: none;
}

.root-layout-btn-shadow {
    box-shadow: 0px 2px 8px 2px rgba(0, 0, 0, 0.03);
}

.refer-button {
    position: relative;
}
.refer-button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 1px;
    background: linear-gradient(30deg, #ff006d, #0052ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.side-menu {
    background: linear-gradient(
        180deg,
        #ff006d 0%,
        rgba(0, 82, 255, 0.75) 100%
    );
}

.mic-container {
    background: linear-gradient(
        180deg,
        #ff006d 0%,
        rgba(0, 82, 255, 0.75) 100%
    );
}

.profile-preferences-match {
    background: linear-gradient(180deg, #393c67 0%, #89789a 100%);
}

.chat-background {
    background-image: url('/images/chatBg.png');
    background-position: top;
    background-repeat: repeat;
    background-size: 23rem;
}

.btn {
    min-height: 0px !important;
    text-transform: capitalize !important;
}

.login-content-container {
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

.ReactCollapse--collapse {
    transition: height 500ms;
}
