#main-page {
    position: relative;
    top: 25px;
    height: 100vh;
}

#main-page-background {
    position: absolute;
    top: 1px;
    height: 100%;
    width: 96%;
    left: 50%;
    transform: translateX(-50%);
    background-color: black;
    filter: blur(11px);
}

#main-page-content {
    position: relative;
    top: 1px;
    height: 100%;
    width: 96%;
    margin: 0 auto 0 auto;
}

#main-page-nav-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    height: 60px;
}

#main-page-nav-bar p {
    color: white;
    font-family: "Inter", sans-serif;
}

#main-page-title {
    margin-top: 15px;
    position: relative;
    left: 25px;
    letter-spacing: -2px;
    font-size: 25px;
}

#publish-list {
    background-color: #00B300;
    position: absolute;
    border-radius: 5px;
    width: 60px;
    height: 25px;
    color: white;
    font-size: 13px;
    left: 150px;
    top: 17px;
}

#add-title {
    margin-top: 12px;
    font-size: 25px;
    font-style: italic;
    font-weight: bold;
    letter-spacing: -1px;
    position: absolute;

    left: 45%;
}


#main-page-nav-search {
    color: #B9B4BB;
    background-color: transparent;
    height: 15px;
    width: 200px;
    /* width: 200px;
    height: 200px; */
    min-width: 200px;
    border: solid #B9B4BB 2px;
    caret-color: #B9B4BB;
    border-radius: 15px;
    margin-top: 17px;
    position: relative;
    right: 25px;
    padding: 0px 0px 0px 5px;
    transition: height 0.5s ease;
}

#main-page-search {
    color: #B9B4BB;
    font-size: 15px;
    height: 15px;
    width: 200px;
    border-radius: 15px;
    letter-spacing: -1px;
    background-color: transparent;
    border: none;
    outline: none;
    margin-bottom: 10px;
}

#main-page-nav-search.expanded {
    width: 300px;
    height: 400px;
    overflow-y: auto;
}

.search-result {
    display: flex;
    margin-top: 5px;
}
.image-result {
    width: 53px;
    height: 53px;
    margin-left: 5px;
    border-radius: 5px;
}

.track-result {
    width: 150px;
    height: 50px;
    margin-left: 10px;
    display: block;
    margin-top: 5px;
}

.add-result {
    width: 20px;
    height: 20px;
    background-color: #9e89a8;
    border-radius: 5px;
    color: white;
    text-align: center;
    margin-top: 5px;
    margin-left: 40px;
    cursor: default;
    transition: 0.08s;
    font-family: "Inter", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-result.added {
    background-color: #8a8335;
    margin-left: 25px;
    width: 50px;
    font-size: 11px;
}

.track-name {
    width: 170px;
    
    font-weight: bold;
    font-size: 15px;
    margin-top: 0px;
    margin-bottom: 0px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.artist-name {
    font-size: 13px;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* .added-indicator {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    background-color: #8a8335;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: white;
    height: 20px;
    width: 50px;
    margin-top: 10px;
} */

/* updating stuff */

