.lives-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.lives-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    margin: 0;
}

.thumb-container {
    width: 220px;
    height: 132px;
    overflow: hidden;
    padding: 5px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.thumb-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

.live-created-at,
.live-finished-at {
    text-align: center;
    font-size: 0.7rem;
    color: #666;
    margin-bottom: 5px;
}

.thumb-container:hover {
    box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}

.live-active {
    border-color: green;
    background-color: #e0ffe0;
}

.live-finished {
    border-color: red;
    background-color: #ffe0e0;
}

.live-status-label {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #fff;
}

.live-active .live-status-label {
    background-color: green;
}

.live-finished .live-status-label {
    background-color: red;
}

.live-type-label {
    position: absolute;
    bottom: 5px;
    right: 5px;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #fff;
    background-color: #007bff;
}