.selected {
    text-decoration: underline;
}

.emphasis {
    color: #6ea8fe;
}

.main {
    padding:0;
    margin-top: 20px;
    max-width: 800px;
}

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

.menu-items {
    display: flex;
    align-items: center;
    justify-content: end;
}

.menu .menu-items .menu-item {
    margin-right: 20px;
    cursor: pointer;
}

.login-container {
    margin-top: 20px;
    width: 600px;
}

.main-image {
    margin: 0 auto;
    margin-top: 0px;
    text-align: center;
}

.main-image img {
    margin: 0 auto;
    margin-top: 40px;
    max-width: 800px;
    max-height: 600px;
}

.main-image video {
    margin: 0 auto;
    margin-top: 40px;
    max-width: 800px;
}

.navigation-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.media-details {
    margin-top: 40px;
    line-height: 5px;
}

.details-with-tags {
    margin-top: 40px;
    display: flex;
}

.tag {
    display: inline-block;
    padding: 5px 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    cursor: pointer;
}

.add-tag {
    color: black;
    display: inline-block;
    padding: 5px 10px;
    background-color: #dc3545;
    border-radius: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    cursor: pointer;
}

.add-tag:hover {
    background-color: #d63384;
}

.tag.tag-selected {
    background-color: #6ea8fe;
    color: white;
}

.deactivate-media {
    margin-top:40px;
}

.menu-head a {
    font-weight: bold;
    color: #adb5bd;
    text-decoration: none;
}

.menu-head a:hover {
    font-weight: bold;
    color: #adb5bd;
    text-decoration: none;
}


@media (max-width: 1023px) {
    /* Styles for resolutions below 1024 width */
    
    .login-container {
        max-width: 85%;
        width: 85%;
    }

    .main {
        max-width: 85%;
        width: 85%;
    }

    .menu {
        display: block;
    }

    .menu-items {
        font-size: 15px;
        justify-content: left;
    }

    .deactivate-media {
        margin-top:20px;
    }

    .main-image img {
        margin-top:20px;
        max-width: 100%;
        max-height: 300px;
    }
    
    .details-with-tags {
        margin-top: 20px;
        display: block;
    }

    .details-with-tags div {
        margin-bottom: 20px;
    }

    .media-details {
        margin-top: 0px;
    }

    .main-image video {
        margin-top: 20px;
        width: 100%;
    }
}