/* Jost Variable Font - Roman/Normal Style */
@font-face {
  font-family: 'Jost';
  /* The family name */
  font-style: normal;
  /* Defines this block as the 'normal' style */
  font-weight: 100 900;
  /* The available weight range for this file */
  font-display: swap;
  src: url('../fonts/Jost-VariableFont_wght.woff2') format('woff2-variations'),
    url('../fonts/Jost-VariableFont_wght.ttf') format('truetype-variations');
}

/* Jost Variable Font - Italic Style */
@font-face {
  font-family: 'Jost';
  /* Use the SAME family name */
  font-style: italic;
  /* Defines this block as the 'italic' style */
  font-weight: 100 900;
  /* The available weight range for this file */
  font-display: swap;
  src: url('../fonts/Jost-Italic-VariableFont_wght.woff2') format('woff2-variations'),
    url('../fonts/Jost-Italic-VariableFont_wght.ttf') format('truetype-variations');
}

body,
p,
a {
  font-family: 'Jost', sans-serif;
  /* Use 'Jost' and provide a fallback */
  font-weight: 400;
  /* Default to regular weight */
}

.citrivo-brand {
  font-weight: 600;
}

body {
  background-color: #FFFDE7;

}

body.bg-citrivo {
  background-color: #FFFDE7;
  /* Fallback color, can be one of your stripe colors */
  background-image: repeating-linear-gradient(45deg,
      #fffac7,
      /* Yellow */
      #fffac7 40px,
      #FFFDE7 40px,
      /* Off-white */
      #FFFDE7 100px);
}

.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #0d6efd; /* Bootstrap Primary Blue */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
}

/* Remove the default caret arrow from the dropdown toggle if you prefer clean look */
.dropdown-toggle::after {
    display: none; 
}