/* 440 956 */
@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter";
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: #121212;
}

.container {
    width: 440px;
    overflow: scroll;
    height: 100%;
    background-color: #121212;
}


nav {
    background: url(background-img.png);
    background-repeat: no-repeat;
    background-position: center;

    background-color: rgba(16, 5, 5, 0.85);
    background-blend-mode: lighten;

    padding: 4.5em 2em;
    position: relative;
    z-index: 1;
}

nav::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: black;
    top: 0;
    left: 0;
    opacity: 0.5;
    z-index: -1;
}


.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-top h1 {
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0.1px 0.1px 0.1px black;
}

.nav-top a {
    border: none;
    background-color: transparent;
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.link {
    border: none;
    background-color: transparent;
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}


.clickable {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.clickable:hover {
    transform: scale(1.1);
}

.clickable:active {
    transform: scale(1);
}

.nav-search {
    position: absolute;
    display: flex;
    bottom: -10px;
    right: 0;
    left: 0;
    width: 85%;
    margin: auto;
}

form {
    width: 100%;
    display: flex;
    background-color: #2E2E2F;
    color: #A5A5A5;
    align-items: center;
    border-radius: 2em;
}

.nav-search form input {
    flex: 1;
    border: none;
    height: 40px;
    background-color: transparent;
    font-family: inherit;
    color: #FFFFFF;
    font-size: 1rem;
}

.nav-search form input:focus {
    outline: none;
    border: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.search-bar {
    display: flex;
    align-items: center;
    flex: 1;
}

.icon-bg {
    display: flex;
    flex-direction: column;
    color: #2E2E2F;
    font-size: 5rem;
    justify-content: center;
    align-items: center;
    height: 70vh;
}

.icon-bg p {
    font-size: 3rem;
}

.notFound {
    display: flex;
    flex-direction: column;
    color: #787878;
    font-size: 1rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 70vh;
}

.emptyList {
    display: flex;
    flex-direction: column;
    gap: 1em;
    color: #787878;
    font-size: 1.2rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 70vh;
}

.search-bar i {
    cursor: pointer;
    width: 40px;
}

.nav-search form button {
    width: 20%;
    height: 40px;
    border-radius: 2em;
    border: none;
    background-color: #4B4B4B;
    color: #FFFFFF;
}


.movie-dashboard {
    padding-top: 2em;
    width: 85%;
    margin: auto;
}

.movie-card {
    display: flex;
    align-items: center;
    gap: 1em;
    padding: 1em 0;
    border-bottom: 1.5px solid #2C2C2C;
}

.remove {
    border-bottom: 1.5px solid #E5E7EB;
}

.movie-card img {
    width: 100px;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

.flex {
    display: flex;
}

.movie-info {
    display: flex;
    flex-direction: column;
    gap: .5em;
}

.meta-row {
    justify-content: space-between;
    font-size: 0.6rem;
}

.description {
    font-size: 0.8rem;
    color: #A5A5A5;
    line-height: 1.5;
    overflow: hidden;
}

.description-div {
    height: 80px;
    overflow: hidden;
}

.title-row {
    display: flex;
    align-items: center;
}

.title-row .movie-title {
    margin-right: 1em;
    font-size: 0.9rem;
}

.fa-star {
    color: #FEC654;
}

.rating-row {
    display: flex;
    font-size: 0.8rem;
    gap: 4px;
    align-items: center;
}

.watchlist {
    background-color: transparent;
    color: white;
    border: none;
    transition: color ease 0.1s;
}

.add-to-list {
    font-size: 0.8rem;
}

.none {
    display: none;
}