.navbar-custom {
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.navbar-custom .navbar-brand {
    color: #000000;
    font-weight: bold;
}

.discord-login-button {
    background-color: #5964f2;
    border-radius: 5px;
    color: white;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.discord-login-button img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.discord {
    font-size: 20px;
    margin-right: 3px;
}

.user-info {
    font-family: 'Montserrat', sans-serif;
    color: black;
    margin-right: 10px;
    font-weight: bold;
    font-size: 15px;
}

.user-avatar {
    border-radius: 8px;
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.d-flex.align-items-center {
    cursor: pointer;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.d-flex.align-items-center:hover {
    opacity: 0.8;
}

.discord-login-button:hover {
    background-color: #4752d1;
    transform: translateY(-2px);
}

.discord-login-button:active {
    transform: translateY(2px);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}