.header-container {
  display: flex;
  justify-content: center;
  position: relative;
}

h1 {
  text-align: center;
}

input[type="button"] {
  position: absolute;
  left: 0;
}

body {
    font-family: 'Mona Sans', sans-serif;
    font-weight: 400; /* Regular */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1 {
    font-family: 'Mona Sans', sans-serif;
    font-weight: 700; /* Bold */
}


/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f6f8fa;
    padding: 19px 20px;
    height: 25px;
    border-bottom: 1px solid #d1d9e0;
    overflow: hidden;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
}

.gear-icon img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
}

.favorites-icon img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 5px;
    display: flex;
}

.bell-icon img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    display: flex;
}

.dashboard a {
    font-size: 18px;
    font-family: 'Mona Sans', sans-serif;
    font-weight: 700;
    display: flex;
    text-decoration: none;
    color: black;
}

.dashboard-btn {
    font-size: 16px;
    font-family: 'Mona Sans', sans-serif;
    font-weight: 700;
    color: #000000;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 12px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
}

.dashboard-btn:hover {
    background-color: #e0e0e0;
    border-radius: 5px;
}