.ddtv-plugin-wrapper {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.ddtv-drop-zone {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.ddtv-drop-zone:hover, .ddtv-drop-zone.dragover {
    border-color: #007cba;
    background-color: #f0f8ff;
}

.ddtv-button {
    background-color: #007cba;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.ddtv-button:hover {
    background-color: #005a87;
}

.ddtv-hidden {
    display: none;
}

.ddtv-file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    background-color: white;
}

.ddtv-file-info {
    flex-grow: 1;
}

.ddtv-filename {
    font-weight: bold;
    margin-bottom: 5px;
}

.ddtv-channel-select {
    width: 200px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.ddtv-actions button {
    margin-left: 5px;
    padding: 5px 10px;
    font-size: 14px;
}