/* CSS VARIABLES EASY ACCESS */
:root {
    --border_col: rgb(212, 212, 212);
}


/* NAVBAR CSS */

nav {
    position: relative;
    display: flex;
    height: 10vh;
    justify-content: space-between;
    box-shadow: 0 4px 8px var(--border_col);
}

/* EXAM CHOICES */

.exam-preferences, .select-exam-board, .select-exam-type {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: 4rem;
}
.select-exam-board:hover, .select-exam-type:hover {
    cursor: pointer;
}
.select-exam-board.shown, .select-exam-type.shown {
    color: #0C6CF2;
}

.exam-boards, .exam-types {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 15px;
    top: 45px;
    padding: 4px 6px;
    overflow: hidden;
    color: black;
    height: 0px;
    background-color: transparent;
}
.exam-type {
    width: 65px;
}
.exam-boards.shown, .exam-types.shown {
    max-height: 1000px;
    height: fit-content;
    background-color: white;
}

.exam-board, .exam-type{
    padding: 1px 4px;
}
.exam-board:hover, .exam-type:hover {
    background-color: #F0F0F0;
    cursor: pointer;
}

.icon {
    width: 32px;
}

/* LOGO */

.img-logo {
    margin-left: 0.1rem;
    height: 40px;
} .logo {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    left: 4rem;
    cursor: pointer;
    width: 300px;
}

.name {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 28px;
    color: #1d3557;
    cursor: pointer;
}

.account {
    display: flex;
    position: relative;
    gap: 2rem;
    align-items: center;
    right: 4rem;
}

.btn {
    border: 1px solid black;
    border-radius: 2rem;
    height: 50px;
    width: 150px;
    padding: 1rem;
    font-size: 12px !important;
    transition: all 300ms ease-in-out;
} .btn-2 {
    background-color: #0953BA;
    font-weight: 600;
    font-size: 16px;
    color: white;
    border-color: transparent;
    transition: 150ms all ease-in-out;
} .btn-2:hover {
    background-color: #073F8C;
    transition: 150ms all ease-in-out;
} .btn-1 {
    width: 80px;
    font-weight: 400;
    background-color: white;
    border-color: white;
    transition: all 300ms ease-in-out;
} .btn-1:hover {
    color: #0B63DE;
}

/* Logged In profile img */
.navProfile button {
    background-color: transparent;
    border: none;
    margin-left: 50px;
    margin-right: 50px;

    cursor: pointer;
    transition: all .5s ease;

    border-radius: 50px;
}

.navProfile button:hover {
    transform: translate(0, -5px);
    background-color: gray;
}

#navProfileImg img{
    height: 60px;
    border-radius: 50px;
    border: 1px solid black;
}

.links {
    display: flex;
    text-align: center;
}

.about-links {
    display: flex;
    transition: all 300ms ease-in-out;
    list-style: none;
    width: fit-content;
    transition: all 300ms ease-in-out;
    font-size: 1.1rem;
    align-items: center;
    gap: 150px;
}
.about-links a {
    text-decoration: none;
    color: black;
}

.mainNav {
  display: flex;
  align-items: center; /* Vertical alignment */
  justify-content: center; /* Horizontal alignment (optional) */
}
