.header-top {
    justify-content: space-between;
    display: flex;
    align-items: flex-start;  /* Align items to the top */
    justify-content: space-between; /* Pushes logo to left and title to the center */
    margin-bottom: 0rem;
    padding: 1px 1px; /* Reduce top/bottom padding to make it smaller */
}
header {
    margin: 0 auto;   /* Center the header */
    padding: 0 px;    /* Space inside the header */
    background-color: #212529;
    color: white;
    border-radius: 2px;
}

.logo {
    height: 80px;
    width: auto;
    margin-right: 1rem;
    margin-left: 0.5rem;
    margin-top: 5px; /* Adjust the top margin to move the logo down */
    vertical-align: top; /* Align the top of the logo with the text */
}


.header-title {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex-grow: 1;
    padding-top: 0px; /* Reduce padding on top */
    padding-bottom: 0px; /* Reduce padding on bottom */
}
nav {
    display: flex;
    justify-content: space-around;
    background-color: #343a40;
    padding: 0.5rem;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
}
.logo-title-container {
    display: flex;
    gap: 1px; /* Space between logo, text, and button */
}

.login-btn {
    background-color: #0066cc;
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
    margin-top: 5px;
    margin-right: 10px;
    align-self: flex-start; /* Aligns button to the top of the text */
}

.login-btn:hover {
    background-color: #005bb5;
}