.videos-section {
    padding: 0;
    background: transparent;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.videos-section h3 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.video-iframe {
    width: 100%;
    height: 200px;
    border: none;
}

.refresh-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 15px;
    transition: background 0.2s;
}

.refresh-btn:hover {
    background: #218838;
}

.videos-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.video-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: move;
    transition: transform 0.2s, box-shadow 0.2s;
}

.video-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.video-item.dragging {
    opacity: 0.5;
    transform: rotate(5deg);
}

.video-item.drag-over {
    border: 2px dashed #667eea;
}

.video-header {
    padding: 15px;
    background: #f0f2ff;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.2s;
}

.video-header:hover {
    background: #e6eaff;
}

.video-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}

.track-match {
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 500;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.save-order-btn {
    background: #17a2b8;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
    transition: background 0.2s;
}

.save-order-btn:hover {
    background: #138496;
}