.radio-show {
    display: flex;
    flex-direction: column;
    max-width: 950px;
    margin: 10px auto;
    padding: 5px;
    flex: 1;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
}

.radio-show-title {
    font-size: 1.5em;
    font-weight: bold;
    border-bottom: 2px solid #000000;
}

.radio-show-content {
    flex: 1;
}

.radio-show-hosts-header {
    margin-top: 1em;
    font-weight: bold;
    text-align: center;
}

.radio-show-hosts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.radio-show-host-container {
    padding: 5px;
}

.radio-show-host-img img {
    height: 90px;
    width: 90px;
    border: 2px solid #000000;
    border-radius: 50%;
}

.radio-show-host-name {
    text-align: center;
}