/*
Copyright (c) 2025 by Vlad Murariu (https://canigetakiss.com)
*/

.navbar {
    width: 90px;
    min-height: 60px;
    height: fit-content;
    z-index: 99999;

    top: 15px;
    right: 15px;
    margin: 4px;
    position: sticky;
    overflow: hidden;

    background-color: rgb(255, 0, 93);
    border-radius: 4px;
    color: white;

    display: flex;
    float: right;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;

    transition: ease-in-out 0.6s;
}

.navbar:hover {
    background-color: rgb(154, 5, 5);
}

.navbar a {
    color: white;
    margin: 3px;
    font-size: 20px;
    text-decoration: none;
}

.navbar a:last-child {
    margin-bottom: 6px;
}

.navbar a:hover {
    cursor: pointer;
    color: rgb(255, 151, 189);
}


/* cross (x) for possible future use */
.crossContainer {
    display: flex;
    margin: 12px;
    margin-right: 35px;
    width: fit-content;
    height: fit-content;
}

.cross {
    width: fit-content;
    height: fit-content;
    display: flex;
}

.cross:hover {
    cursor: pointer;
}

.line {
    width: 18px;
    height: 3px;
    margin: 0px;
    padding: 0px;
    background-color: black;
    position: absolute;
}

.line:first-child {
    transform: rotate(45deg);
}

.line:last-child {
    transform: rotate(-45deg);
}
