main {
    margin-top: 10vh;
    margin-bottom: 10vh;
    display: flex;
    flex-direction: column;
}

#project {
    width: 100%;
}

#project-info {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#miniature-container {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#miniature-link {
    display: flex;
    justify-content: center;
}

#project-miniature {
    border-radius: 15px;     
    overflow: hidden;
    box-shadow: black 0 0 10px;
    max-width: 90%;
    max-height: 90%;
}

#status-container {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#status-svg {
    color: white;
}

#progression {
    width: 50%;
    height: 15px;
    background:
        linear-gradient(
            to right,
            #46a6c1 0%,
            #275b69 var(--value),
            #ffffff var(--value),
            #ffffff 100%
        );
    box-shadow: 0 0 10px white;
    border-radius: 5px;
}

#progression::-moz-range-track {
    height: 15px;
    border-radius: 5px;
    background: 
        linear-gradient(
            -45deg,
            transparent 40%, 
            rgba(255, 255, 255, 0.7) 50%,
            transparent 60%
        );

    background-size: 200% 100%;
    animation: shine-effect 3s infinite linear;
}

#progression::-moz-range-thumb {
    visibility: hidden;
}

#project-details {
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#project-name-italic {
    width: 100%;
    display: flex;
    align-items: flex-end;
}

#project-name {
    text-align: start;
    width: 80%;
    margin-left: 5%;
}

#project-desc {
    width: 80%;
    text-align: start;
}

p {
    font-size: 2em;
}


.actionButton{
    color: white;
    display: flex;
    align-items: center;
    margin: 10px 0px 10px 7px;
    background-color: #0000;
    border: none;
    transition: all 0.3s ease-out;
    cursor: pointer;

    &:hover{
        transform: scale(1.1);
        color: rgb(65, 168, 202);
    }
}

#toolbar{
    display: flex;
    padding-right: 7px;
    justify-content: center;
    background-color: #1d1d1d;
    border: solid black;
    border-radius: 15px;
    box-shadow: black 0 0 10px;
    transition: transform 0.3s ease-out;
}

#logout {
    &:hover{
        transform: scale(1.1);
        color: rgb(163, 28, 28);
    }
}



@keyframes shine-effect {
    0% {
        background-position: 200% 0; 
    }
    100% {
        background-position: -200% 0; 
    }
}