/* additional styles for Movie Search */
body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.ml-btn {
    width: 100%;
}

.fav-btn {
    width: 100%;
}

.btn {
    margin: 0 1px;
}

#movie-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#movie-list p {
    display: flex;
    flex-direction: row;
    align-items: center;

}

#movie-list p button {
    margin-right: 10px;
}

p i {
    color: white;
}

.metadata li {
    margin-bottom: 10px;
}

/* adjust styling for smart phones */
@media (max-width: 433px) {

    .row {
        margin-bottom: 10px;
    }

    .btn {
        font-size: 12px;
        font-weight: 300;
        padding: 0 8px;
    }

    .ml-btn {
        width: 100%;
    }

    .fav-btn {
        width: 100%;
    }

    .metadata li {
        margin-bottom: 5px;
    }
}

/* adjust button size for small devices like iphone 4 */
@media (max-width: 320px) {

    .btn {
        font-size: 11px;
        padding: 0 6px;
    }
}