﻿@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

.fqs300 {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.fqs400 {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.fqs500 {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.fqs600 {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.fqs700 {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

body {
    background-color: black;
    color: #9c9fb1;
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
}

.navbar {
    min-height: 20px; /* Example: Sets a minimum height of 80px */
}

/* Adjust padding and line-height for elements within the navbar to align them correctly */
.navbar-brand {
    padding: 0 5px;
    height: 20px;
    line-height: 20px; /* Aligns text vertically within the brand area */
}

.navbar-nav > li > a {
    /* Adjust padding to center links vertically within the new navbar height */
    padding-top: 5px; /* Example calculation for 80px height and 27px line-height */
    padding-bottom: 5px;
    line-height: 18px;
}


/* Style the entire scrollbar */
::-webkit-scrollbar {
    width: 15px; /* Adjust width as needed */
    background-color: lightgrey; /* Background of the scrollbar area */
}

/* Style the scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background-color: dimgray; /* Red thumb */
    border-radius: 5px; /* Rounded corners for the thumb */
}

/* Style the scrollbar track (the area the thumb moves along) */
::-webkit-scrollbar-track {
    background-color: gray; /* Blue track */
}

/* Style the scrollbar corner (where vertical and horizontal scrollbars meet) */
::-webkit-scrollbar-corner {
    background-color: lightslategrey;
}

.dropdown-menu-right {
    right: 0 !important;
    left: auto !important;
}
