@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-VariableFont_opsz,wght.ttf');
}

@media (max-width: 768px) {
  .sidebar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 80px;
    height: 80px;
    background-color: #fff;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    overflow-y: hidden;
    top: auto;
    flex-wrap: nowrap;
    padding: 0;
  }

  .sidebar-container svg {
    width: 24px;
    height: 24px;
  }

  .sidebar-tabs {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-around;
    margin: 0 auto;
  }

  .sidebar-logo,
  .terms-privacy {
    display: none;
  }

  .tab-content{
    height: 76px;
    width: 76px;
    border-radius: 16px;
  }
  
  .tab-content-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 !important;
    font-size: 14px;
    line-height: 120%;
  }

  .tab-content-inner:hover {
    cursor: pointer;
  }

  .tab-content p {
    margin: 0;
  }

  .main-content {
    margin-bottom: 80px;
  }

  .contact-button {
    display: none;
  }

  .user-dropdown {
    right: -11px;
  }
}

@media (max-width: 768px) {
  .sidebar-container {
    background-color: #2A3647;
  }
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
    width: 32px;
    height: 39px;
  }
}

@media (max-width: 768px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 10px;
    max-height: 80px;
    height: 80px;
  }

  .user-initials {
    width: 40px;
    height: 40px;
  }
}