.live-shows {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.categories a {
    margin-right: 10px;
}
.live-show {
    margin-bottom: 20px;
    position: relative;
}
.live-now {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff0000;
    color: #fff;
    padding: 5px 10px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.red-dot {
    margin-right: 5px;
    font-size: 1.2em;
}
.show-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
}
.username {
    font-weight: bold;
    text-decoration: none;
    flex: 1;
}
.send-message-container {
    flex: 1;
    text-align: center;
}
.like-button-container {
    flex: 1;
    text-align: right;
}
.send-message {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    text-decoration: none;
}
.send-message:hover {
    background-color: #444;
}
.like-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #ff0000;
}
.thumbs-up {
    font-size: 1.5em;
}