/* start menu */
.startWindow {
    display: none;
    background-color: rgba(50, 50, 50, 0.9);
    position: absolute;
    width: 620px;
    right: 336px;
    bottom: 56px;
    height: 620px;
    border-radius: 7px;
    padding: 0 22px 0 22px ;
    transform: translateY(100%);
}

.animate-window {
    animation: slide-up 0.3s forwards; /* Animate the window up */
}

.animate-window-reverse {
    animation: slide-down 0.1s forwards; /* Animate the window down */
}

@keyframes slide-up {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes slide-down {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}

.startWindow .startSearch {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 20px;
    text-align: center;
    
}

#startSearch-icon {
    position: absolute;
    left: 6%;
    color: rgb(208, 208, 208)
}

.startSearch input {
    height: 30px;
    width: 95%;
    border-radius: 15px;
    outline: none;
    border: none;
    padding-left: 50px;
    color: aliceblue;
    background-color: rgba(25, 25, 25, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.startSearch input::placeholder {
    font-weight: bold;
}

.pinnedTitle {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

/* .allApp {
    margin-right: 0px;
} */
#allAppBtn {
    width: 5.5rem;
    height: 1.5rem;
    padding: 2px;
    font-size: 14px;
    color: white;
    background-color: rgba(0, 0, 0, 0.2);
    outline: none;
    border: none;
    border-radius: 6px;
}

#allAppBtn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transition: 0.1s ease-in;
}

.AppList {
    height: calc(100vh - 574px);
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    padding: 0 60px;
    gap: 1.1rem;

}

.AppList-edgeIcon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.AppList-edgeIcon p {
    margin-top: 7px;
    font-size: 13px;
    text-align: center;
}

.AppList-edgeIcon img {

    max-height: 29px;
    /* width: auto; 
    height: auto; 
    margin-bottom: 5px;  */
}


.recommendedTitle {
    height: 1.5rem;
    position: absolute;
    top: 65%;
    left: 15%;
    display: flex;
    justify-content: space-between;
    width: 70%;
}

.recommendedBtn button {
    width: 4.5rem;
    height: 1.5rem;
    padding: 2px;
    font-size: 14px;
    color: white;
    background-color: rgba(0, 0, 0, 0.2);
    outline: none;
    border: none;
    border-radius: 6px;
}

.recommendedBtn button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transition: 0.1s ease-in;
}

.recommendedList {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 3.5rem;
    position: absolute;
    top: 75%;
    left: 15%;
    display: flex;
    justify-content: space-between;
    width: 70%;
}

.recommendedListIcon {
    display: flex;
    height: 28px;
}

.recommendedListIcon img {
    max-height: 28px;
    /*width: auto; 
    height: auto; 
    margin-right: 10px;  */
}

.recommended-iconName {
    font-size: 14px;
    align-items: center;
    margin: auto;
}

.startControl {
    border-top: 1px solid rgba(0, 0, 0, 0.9);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    top: 89.5%;
    left: 0%;
    width: 100%;
    background-color: rgba(20, 20, 20, 0.6);
    height: 65px;
    
    border-radius: 0 0 7px 7px;
}
.profilePhoto img{
    height: 35px;
}
.profilePhoto{
    position: relative;
}
#profileName{
    position: absolute;
    position: absolute;
    top: 22%;
    left: 120%;
}