﻿#divLoginLinks {
    width: 500px;
    margin: 0;
    position: relative;
    left: 550px;
    top: 80px;
}

.link-white {
    color: white;
    text-decoration: none;
}

.link-white:visited {
    color: white;
}

.link-white:hover,
.link-white:active {
    color: #cccccc; /* optional: light gray on hover/active */
}

.link-container {
    display: flex;
    justify-content: center;  /* Horizontally centers the links */
    gap: 30px;  /* Space between the links */
}

.link-container a {
    display: inline-block;  /* Ensures that the links are treated as inline elements */
    font-weight: bold;  /* Make the font bold */
    text-decoration: none;  /* Ensure no underline */
}