#main-image > img {
    max-height: 200px;
    display: block;
    margin: 0 auto;
}

.title {
    font-size: 2.5rem;
}

.search-box {
    height: 35px;
    min-width: 300px;
    font-size: 1.2rem;
}

.search-results {
    margin-left: 20px;
}

/* Artist page */
.artist-grid-image {
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Do not repeat the image */
    background-size: cover;
    /* Resize the background image to cover the entire container */
    min-height: 300px;
}

.album-grid-image{
    max-height:174px;
}

.artist-grid-image span.artist-grid-title,
.artist-grid-image span.artist-grid-play-count {
    background-color: #fff;
    position: absolute;
    bottom: 20px;
    cursor: pointer;
    color: black;
    padding: 2px 4px 2px 4px;
}

.artist-grid-image span.artist-grid-play-count {
    right: 20px;
}

.artist-grid-image span.artist-grid-title {
    padding-left: 3px;
    padding-right: 3px;
}

.artist-links{
    text-align: center;
width: 50%;
margin-bottom: 10px;
}

/* Rating Star Widgets Style */
.rating-stars ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 0px;

    -moz-user-select: none;
    -webkit-user-select: none;
}

.rating-stars ul > li.star {
    display: inline-block;
    margin: -2px;

}

/* Idle State of the stars */
.rating-stars ul > li.star > i {
    /* font-size:2.5em; /* Change the size of the stars */
    color: #ccc;
    /* Color on idle state */
}

#song-header .rating-stars ul > li.star > i{
    font-size: 2rem;
}

/* Hover state of the stars */
.rating-stars ul > li.star.hover > i {
    color: #FFCC36;
}

/* Selected state of the stars */
.rating-stars ul > li.star.selected > i {
    color: #FF912C;
}

/* Tags */
.tag-edit, #tag-update{
    cursor: pointer;
}
.track-tag{
    padding:5px;
}

/* Track edits */
.play-delete, .track-queue{
    cursor: pointer;
}

/* Visualiser */
#mynetwork {
  font-size: 10px;
  height: 800px;
  border: 1px solid lightgray;
  background-color: #333333;
}

.vis-sidebar-artist-img{
    height: 3rem;
    border-radius: 20px;
    margin-right: 5px;
}

#playchart{
	height: 400px;
	max-height:400px;
}