.epg-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.epg-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.068);
    transition: 0.3s;
}

.epg-item:hover {
    background: rgba(255,255,255,0.05);
}

.epg-logo {
    width: 45%;
    max-width: 180px;
}
 
.epg-logo img {
    width: 100%;
    max-height: 90px;
    object-fit: contain;
}

.epg-content {
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.epg-content input {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
}

.epg-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.copy-btn {
    cursor: pointer;
}