﻿/* Header styling */
.header {
    height: 100px;
    background-color: #002d3f;
}

/* Container to handle the default margins */
.container {
    height: 100%; /* Ensures the container takes up the full height of the header */
    position: relative; /* Makes this container the reference for absolutely positioned children */
}

/* Logo styling */
.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
}

/* Login links styling */
.login-link, .login-link:visited {
    position: absolute;
    padding: inherit;
    top: 50%;
    transform: translateY(-50%);
    text-decoration: none;
    color: #007bff; /* Bootstrap's primary color */
    font-size: 16px;
    color: white;
}
    .login-link svg {
        margin-bottom: -3px;
    }

    .login-link:hover {
        text-decoration: underline;
        color: white;
    }

    /* Left-aligned login link */
    .login-link.left {
        left: 0;
    }

    /* Right-aligned login link */
    .login-link.right {
        right: 0;
    }
    .login-link:active, .login-link:visited {
        color: white;
    }

.logged-in-user {
    position: absolute;
    top: 5px;
    right: 10px;
    color: white;
    padding: inherit;
    font-size: 10px;
}